Skip to content

Commit 7982e9a

Browse files
committed
Update OpenBSD version to 7.6 in GitHub Actions
Now, it seems cross-platform-actions/[email protected] supports OpenBSD 7.6. cross-platform-actions/action@595d543
1 parent f5a52df commit 7982e9a

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/test.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,17 @@ jobs:
107107
test-cross-platform:
108108
strategy:
109109
matrix:
110-
# don't forget to update current os versions, see https://github.com/cross-platform-actions/action?tab=readme-ov-file#supported-platforms
111110
include:
112-
- { os: freebsd, version: "14.1", prepare_cmd: "sudo pkg install -y rust cmake rust-bindgen-cli" }
113-
# 7.6 is not supported by [email protected] yet
114-
- { os: openbsd, version: "7.5", prepare_cmd: "sudo pkg_add rust cmake llvm%17; export LIBCLANG_PATH=/usr/local/llvm17/lib" }
111+
- {
112+
os: freebsd,
113+
version: "14.1",
114+
prepare_cmd: "sudo pkg install -y rust cmake rust-bindgen-cli",
115+
}
116+
- {
117+
os: openbsd,
118+
version: "7.6",
119+
prepare_cmd: "sudo pkg_add rust cmake llvm%17; export LIBCLANG_PATH=/usr/local/llvm17/lib",
120+
}
115121
fail-fast: false
116122
runs-on: ubuntu-latest
117123
name: "test (${{matrix.os}}-${{matrix.version}})"

0 commit comments

Comments
 (0)