Skip to content

Commit

Permalink
Trying fo fix cpp-linux-arm64 job.
Browse files Browse the repository at this point in the history
Removing Conan cache before build.
  • Loading branch information
rturrado committed Dec 19, 2023
1 parent ae9e0a2 commit 8eabbac
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
# We are observing an internal compiler error when building with gcc
# So we are changing to clang for the Linux/ARM64 builds
cpp-linux-arm64:
name: "C++ tests (clang/Linux/ARM64)"
name: "C++ tests (gcc/Linux/ARM64)"
runs-on: [self-hosted, ARM64, Linux]
container: python:3.11
strategy:
Expand All @@ -89,6 +89,7 @@ jobs:
run: |
apt-get update
apt-get install -y bison flex default-jre clang
python3 -m pip install --upgrade pip conan
shell: bash
- name: Clean Conan cache
run: |
Expand All @@ -97,7 +98,7 @@ jobs:
- uses: ./.github/actions/cpp-tests
with:
build_type: ${{ matrix.build_type }}
conan_profile: tests-${{ matrix.build_type }}-clang-linux-arm64
conan_profile: tests-${{ matrix.build_type }}-gcc-linux-arm64
shell: bash

# cpp-macos-arm64:
Expand Down
1 change: 1 addition & 0 deletions conan/profiles/tests-debug-gcc-linux-arm64
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include(tests-debug)
4 changes: 4 additions & 0 deletions conan/profiles/tests-release-gcc-linux-arm64
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
include(tests-release)

[conf]
tools.build:cxxflags=["-Wno-error=maybe-uninitialized"]

0 comments on commit 8eabbac

Please sign in to comment.