Add licence information to sections based on third-party code #410
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build CLI | |
on: push | |
jobs: | |
ubuntu-22-04: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build Soup | |
run: php linux_lib.php | |
- name: Build CLI | |
run: php linux_cli.php | |
- name: Run ./soup test | |
run: ./CLI/soup test | |
- name: Upload soup | |
uses: actions/upload-artifact@v3 | |
with: | |
name: "Ubuntu 22.04" | |
path: CLI/soup | |
ubuntu-20-04: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build Soup | |
run: php linux_lib.php | |
- name: Build CLI | |
run: php linux_cli.php | |
- name: Run ./soup test | |
run: ./CLI/soup test | |
- name: Upload soup | |
uses: actions/upload-artifact@v3 | |
with: | |
name: "Debian 11, Ubuntu 20.04" | |
path: CLI/soup | |
debian-10: | |
runs-on: [debian-10] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build Soup | |
run: php linux_lib.php | |
- name: Build CLI | |
run: php linux_cli.php | |
- name: Run ./soup test | |
run: ./CLI/soup test | |
- name: Upload soup | |
uses: actions/upload-artifact@v3 | |
with: | |
name: "Debian 10" | |
path: CLI/soup |