Bump version and add test for static inheritance #85
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test-linux-mac | |
on: | |
push: | |
branches-ignore: | |
- prerelease | |
pull_request: | |
branches-ignore: | |
- prerelease | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
test: | |
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
version: | |
- "1.10" | |
os: | |
- macos-14 | |
arch: | |
- aarch64 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: julia-actions/setup-julia@latest | |
with: | |
version: ${{ matrix.version }} | |
arch: ${{ matrix.arch }} | |
- name: Build libcxxwrap | |
continue-on-error: true | |
env: | |
body: ${{ github.event.pull_request.body }} | |
run: | | |
mkdir libcxxwrap && cd libcxxwrap | |
first_line=$(echo "$body" | sed -n '1p') | |
if [[ "$first_line" == *"#"* ]]; then | |
IFS='#' read -r left right <<< "$first_line" | |
repo_url=$(echo "$left" | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//') | |
branch=$(echo "$right" | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//') | |
else | |
repo_url="$first_line" | |
branch="main" | |
fi | |
echo "repo_url: '$repo_url'" | |
echo "branch: '$branch'" | |
git clone --branch "$branch" --single-branch "$repo_url" . | |
echo "done cloning" | |
if [[ "$OSTYPE" != "darwin"* ]]; then | |
rm -f /opt/hostedtoolcache/julia/1.6*/x64/lib/julia/libstdc++.so.6 | |
fi | |
mkdir build && cd build | |
cmake -DCMAKE_INSTALL_PREFIX=$HOME/install -DAPPEND_OVERRIDES_TOML=ON -DCMAKE_BUILD_TYPE=Release .. | |
VERBOSE=ON cmake --build . --config Release --target install | |
cd ../.. | |
- name: Override JLL | |
run: julia --project -e 'using Pkg; Pkg.add(url="https://github.com/barche/libcxxwrap_julia_jll.jl.git")' | |
- uses: julia-actions/julia-buildpkg@latest | |
- uses: julia-actions/julia-runtest@latest |