diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2025-07-09 14:26:58 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2025-07-26 14:19:51 -0400 |
commit | 54260a40b37890bb6ee3b62659abd3b13c89a0aa (patch) | |
tree | a6c3e6cb4eeab346ea26b69641212afa1a09ce8c /.github/workflows | |
parent | c412de44136e10a346759de27e739406564d1bad (diff) | |
download | bfs-54260a40b37890bb6ee3b62659abd3b13c89a0aa.tar.xz |
ci/dragonfly: Use Clang 18
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4075eb1..8647e2b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -200,6 +200,7 @@ jobs: prepare: | pkg install -y \ bash \ + llvm18 \ oniguruma \ pkgconf \ sudo @@ -209,7 +210,7 @@ jobs: run: | chown -R action:action . jobs=$(sysctl -n hw.ncpu) - sudo -u action ./configure + sudo -u action ./configure CC=clang18 sudo -u action .github/diag.sh make -j$jobs check TEST_FLAGS="--sudo --verbose=skipped" - uses: actions/upload-artifact@v4 |