summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorPierre Joye <pierre.php@gmail.com>2021-08-30 02:54:06 +0700
committerPierre Joye <pierre.php@gmail.com>2021-08-30 02:54:06 +0700
commitb0370d449b69e32e1703ee08bbc2270824e54714 (patch)
treeca22232e474b1edbbb5c9467b1db5c122a77ba6f /.github
parentffa9ccb236ded18836a8b62acb216911dde18680 (diff)
downloadlibgd-b0370d449b69e32e1703ee08bbc2270824e54714.tar.gz
let figure out the syntax...6
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci_ubuntu.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/ci_ubuntu.yml b/.github/workflows/ci_ubuntu.yml
index 5e59f7a..0af5d09 100644
--- a/.github/workflows/ci_ubuntu.yml
+++ b/.github/workflows/ci_ubuntu.yml
@@ -15,18 +15,20 @@ env:
jobs:
CI:
- runs-on: [ubuntu-latest, graviton]
+ runs-on: ${{ matrix.config.os }}
strategy:
fail-fast: false
matrix:
config:
- {
name: "Ubuntu x86 GCC",
+ os: ubuntu-latest,
cc: "gcc",
cxx: "g++"
}
- {
name: "Ubuntu x86 Clang",
+ os: ubuntu-latest,
cc: "clang-12",
cxx: "clang-cpp-12"
}