Skip to content

Merge pull request #670 from Solo5/no-net-ring #84

Merge pull request #670 from Solo5/no-net-ring

Merge pull request #670 from Solo5/no-net-ring #84

Workflow file for this run

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