summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorPierre Joye <pierre.php@gmail.com>2021-08-31 14:25:48 +0700
committerPierre Joye <pierre.php@gmail.com>2021-08-31 14:25:48 +0700
commit306cdf5d7cbde9b1e813b852e632aa470076a1ba (patch)
tree87bdde4e8be1c53fd83368585728e6d9898b1e3f /.github
parent8c222fe847fe70c5aa80a5ef0e1060c6acd4fbef (diff)
downloadlibgd-306cdf5d7cbde9b1e813b852e632aa470076a1ba.tar.gz
clang-12 pkg broken somehow on graviton, skip for now
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci_ubuntu.yml23
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 }}