attempt to run on external host and gh hosts

master
Pierre Joye 2021-08-30 02:27:15 +07:00
parent 40b38f3226
commit f4f4c3ce11
1 changed files with 16 additions and 2 deletions

View File

@ -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: