Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CI] Add arch to install_boost to fix macos CI #13

Merged
merged 1 commit into from
Sep 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/simsycl_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,19 @@ jobs:
- os: windows-latest
c_compiler: cl
cpp_compiler: cl
arch: x86
- os: ubuntu-latest
c_compiler: gcc
cpp_compiler: g++
arch: x86
- os: ubuntu-latest
c_compiler: clang
cpp_compiler: clang++
arch: x86
- os: macos-latest
c_compiler: gcc
cpp_compiler: g++-13
arch: aarch64
exclude:
- os: windows-latest
c_compiler: gcc
Expand All @@ -52,10 +56,11 @@ jobs:
echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT"

- name: Install boost
uses: MarkusJx/[email protected].4
uses: MarkusJx/[email protected].5
id: install-boost
with:
boost_version: 1.78.0
boost_version: 1.81.0
arch: ${{matrix.arch}}

- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v1
Expand Down
Loading