Merge pull request #670 from Solo5/no-net-ring #84
This file contains hidden or 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: DragonFly | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| Build: | |
| name: AMD64 | |
| strategy: | |
| matrix: | |
| operating-system: [ubuntu-latest] | |
| runs-on: ${{ matrix.operating-system }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: DragonFly action | |
| id: test | |
| uses: vmactions/dragonflybsd-vm@v1 | |
| with: | |
| usesh: true | |
| prepare: | | |
| pkg install -y gmake git llvm18 gcc9 | |
| run: | | |
| git config --global --add safe.directory /home/runner/work/solo5/solo5 | |
| env HOST_CC=clang18 TARGET_LD=ld.lld18 TARGET_CC=clang18 ./configure.sh | |
| gmake | |
| gmake clean | |
| env HOST_CC=gcc9 TARGET_CC=gcc9 ./configure.sh | |
| gmake |