diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-02-01 12:42:57 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-02-01 16:31:52 -0500 |
commit | 31bede02d5dbbc8e9e60d3af9fc4a749ad89fa11 (patch) | |
tree | 94986b1faf9f7b77b75e5c5aec067ceee3c491f7 | |
parent | 85e8344637ac4ac28e3638764f28d411781b8e96 (diff) | |
download | bfs-31bede02d5dbbc8e9e60d3af9fc4a749ad89fa11.tar.xz |
ci/freebsd: Use the system compiler
Release builds work now on FreeBSD 14.
-rw-r--r-- | .github/workflows/ci.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dbf77c9..72037e3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -79,7 +79,6 @@ jobs: bash \ expect \ gmake \ - llvm16 \ oniguruma \ sudo \ tcl-wrapper @@ -88,7 +87,7 @@ jobs: run: | chown -R action:action . - sudo -u action gmake -j$(nproc) distcheck CC=clang16 JOBS=-j$(nproc) + sudo -u action gmake -j$(nproc) distcheck JOBS=-j$(nproc) openbsd: name: OpenBSD |