Skip to content

Commit 566e2d9

Browse files
committed
Update tested versions and add version symlink on macOS
1 parent 2852538 commit 566e2d9

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

.github/workflows/test-linux-mac.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
matrix:
2121
version:
2222
- "1.6"
23-
- "1.10"
23+
- "1.11"
2424
- "nightly"
2525
os:
2626
- macos-13
@@ -30,7 +30,7 @@ jobs:
3030
include:
3131
- os: macos-14
3232
arch: aarch64
33-
version: "1.10"
33+
version: "1.11"
3434
- os: macos-14
3535
arch: aarch64
3636
version: "nightly"
@@ -72,6 +72,14 @@ jobs:
7272
mkdir build && cd build
7373
cmake -DCMAKE_INSTALL_PREFIX=$HOME/install -DAPPEND_OVERRIDES_TOML=ON -DCMAKE_BUILD_TYPE=Debug ..
7474
VERBOSE=ON cmake --build . --config Debug --target install
75+
wget https://github.com/JuliaRegistries/General/raw/refs/heads/master/jll/L/libcxxwrap_julia_jll/Versions.toml
76+
jllversion=$(grep '\["' Versions.toml | tail -n 1 | sed -E 's/\["([0-9]+\.[0-9]+\.[0-9]+)\+[^"]*"\]/\1/g')
77+
cd lib
78+
if [ ! -f libcxxwrap_julia.${jllversion}.dylib ]; then
79+
ln -s libcxxwrap_julia.*.*.*.* libcxxwrap_julia.${jllversion}.dylib
80+
fi
81+
cd ..
82+
ls -al lib
7583
cd ../..
7684
- uses: julia-actions/julia-buildpkg@latest
7785
- uses: julia-actions/julia-runtest@latest

.github/workflows/test-win.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
version:
22-
- "1.7"
2322
- "1.10"
23+
- "1.11"
2424
- "nightly"
2525
os:
2626
- windows-latest

0 commit comments

Comments
 (0)