summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Joye <pierre.php@gmail.com>2021-08-30 02:27:15 +0700
committerPierre Joye <pierre.php@gmail.com>2021-08-30 02:27:15 +0700
commitf4f4c3ce1176c1d33830cf5f127779f005b45214 (patch)
tree5729e96504d968a1c9212c251550756cb97efcb6
parent40b38f32261253838b52fbf2043daeae7e9232ee (diff)
downloadlibgd-f4f4c3ce1176c1d33830cf5f127779f005b45214.tar.gz
attempt to run on external host and gh hosts
-rw-r--r--.github/workflows/ci_ubuntu.yml18
1 files changed, 16 insertions, 2 deletions
diff --git a/.github/workflows/ci_ubuntu.yml b/.github/workflows/ci_ubuntu.yml
index 45c5317..d9b4a45 100644
--- a/.github/workflows/ci_ubuntu.yml
+++ b/.github/workflows/ci_ubuntu.yml
@@ -15,21 +15,35 @@ env:
jobs:
CI:
+ runs-on: ${{ matrix.config.os }}
runs-on: [self-hosted, linux, ARM64, aws]
strategy:
fail-fast: false
matrix:
config:
- {
- name: "GCC",
+ os: [self-hosted, linux, ARM64, aws],
+ name: "Ubuntu Graviton GCC",
cc: "gcc",
cxx: "g++"
- }
+ },
# - {
# name: "Clang",
# cc: "clang-12",
# cxx: "clang-cpp-12"
# }
+ - {
+ os: ubuntu-latest,
+ name: "Ubuntu x86 GCC",
+ cc: "gcc",
+ cxx: "g++"
+ },
+ - {
+ os: ubuntu-latest,
+ name: "Ubuntu x86 Clang",
+ cc: "clang-12",
+ cxx: "clang-cpp-12"
+ }
name: ${{ matrix.config.name }}
defaults:
run: