Skip to content
Snippets Groups Projects
Verified Commit 942b7488 authored by Guilherme Amadio's avatar Guilherme Amadio
Browse files

Fix GitHub Actions builds on Ubuntu with clang

parent 875d33e8
No related branches found
No related tags found
No related merge requests found
...@@ -16,6 +16,9 @@ jobs: ...@@ -16,6 +16,9 @@ jobs:
compiler: [ gcc, clang ] compiler: [ gcc, clang ]
target: [ sse4.2, avx2 ] target: [ sse4.2, avx2 ]
env:
CC: ${{ matrix.compiler }}
steps: steps:
- uses: actions/checkout@master - uses: actions/checkout@master
with: with:
...@@ -28,7 +31,7 @@ jobs: ...@@ -28,7 +31,7 @@ jobs:
sudo apt-get install -y cmake pkg-config libgd-dev ${{matrix.compiler}} sudo apt-get install -y cmake pkg-config libgd-dev ${{matrix.compiler}}
- name: CTest Build - name: CTest Build
run: ctest -VV -S cmake/TestVecCore.cmake,${{matrix.target}} run: env CC=${CC} CXX=${CC/g*/g++} ctest -VV -S cmake/TestVecCore.cmake,${{matrix.target}}
macos: macos:
name: MacOS name: MacOS
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment