diff options
author | Pierre Joye <pierre.php@gmail.com> | 2021-08-31 14:25:48 +0700 |
---|---|---|
committer | Pierre Joye <pierre.php@gmail.com> | 2021-08-31 14:25:48 +0700 |
commit | 306cdf5d7cbde9b1e813b852e632aa470076a1ba (patch) | |
tree | 87bdde4e8be1c53fd83368585728e6d9898b1e3f | |
parent | 8c222fe847fe70c5aa80a5ef0e1060c6acd4fbef (diff) | |
download | libgd-306cdf5d7cbde9b1e813b852e632aa470076a1ba.tar.gz |
clang-12 pkg broken somehow on graviton, skip for now
-rw-r--r-- | .github/workflows/ci_ubuntu.yml | 23 |
1 files changed, 9 insertions, 14 deletions
diff --git a/.github/workflows/ci_ubuntu.yml b/.github/workflows/ci_ubuntu.yml index b8e6ad1..fc1e4ed 100644 --- a/.github/workflows/ci_ubuntu.yml +++ b/.github/workflows/ci_ubuntu.yml @@ -33,12 +33,12 @@ jobs: cc: "clang-12", cxx: "clang-cpp-12" } - - { - name: "Ubuntu Graviton Clang", - os: [self-hosted, Linux, ARM64, graviton], - cc: "clang-12", - cxx: "clang-cpp-12" - } + #- { + # name: "Ubuntu Graviton Clang", + # os: [self-hosted, Linux, ARM64, graviton], + # cc: "clang-12", + # cxx: "clang-cpp-12" + # } - { name: "Ubuntu Graviton GCC", os: [self-hosted, Linux, ARM64, graviton], @@ -46,12 +46,7 @@ jobs: cxx: "g++", cflags: "-march=armv8.2-a+fp16+rcpc+dotprod+crypto+sve -mtune=neoverse-n1" } - # - { - # name: "Ubuntu Graviton Clang", - # os: [self-hosted, Linux, ARM64, graviton], - # cc: "clang-12", - # cxx: "clang-cpp-12" - # } + name: ${{ matrix.config.name }} defaults: run: @@ -71,7 +66,7 @@ jobs: sudo add-apt-repository ppa:strukturag/libde265 sudo add-apt-repository ppa:strukturag/libheif - - name: install Ubuntu dependencies + - name: install dependencies env: DEBIAN_FRONTEND: noninteractive run: sudo -E apt-get install --fix-missing -qq -o Acquire::Retries=3 @@ -90,7 +85,7 @@ jobs: echo $CXX echo $CFLAGS - - name: Configure CMake Clang + - name: Configure CMake Clang if: contains(matrix.config.cc, 'clang') env: CC: ${{ matrix.config.cc }} |