Skip to content

Commit

Permalink
Update OpenBSD version to 7.6 in GitHub Actions
Browse files Browse the repository at this point in the history
Now, it seems cross-platform-actions/action@v0.25.0 supports OpenBSD
7.6.

cross-platform-actions/action@595d543
  • Loading branch information
lambdalisue committed Nov 20, 2024
1 parent f5a52df commit 7982e9a
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,17 @@ jobs:
test-cross-platform:
strategy:
matrix:
# don't forget to update current os versions, see https://github.com/cross-platform-actions/action?tab=readme-ov-file#supported-platforms
include:
- { os: freebsd, version: "14.1", prepare_cmd: "sudo pkg install -y rust cmake rust-bindgen-cli" }
# 7.6 is not supported by action@v0.25.0 yet
- { os: openbsd, version: "7.5", prepare_cmd: "sudo pkg_add rust cmake llvm%17; export LIBCLANG_PATH=/usr/local/llvm17/lib" }
- {
os: freebsd,
version: "14.1",
prepare_cmd: "sudo pkg install -y rust cmake rust-bindgen-cli",
}
- {
os: openbsd,
version: "7.6",
prepare_cmd: "sudo pkg_add rust cmake llvm%17; export LIBCLANG_PATH=/usr/local/llvm17/lib",
}
fail-fast: false
runs-on: ubuntu-latest
name: "test (${{matrix.os}}-${{matrix.version}})"
Expand Down

0 comments on commit 7982e9a

Please sign in to comment.