summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml42
1 files changed, 42 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 8e9b5309..5f24720d 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -13,6 +13,20 @@ jobs:
- name: check
run: git diff-index --check --cached 4b825dc642cb6eb9a060e54bf8d69288fbee4904
+ gcc10-x86_64:
+ runs-on: ubuntu-latest
+ env:
+ CC: gcc-10
+ TARGET: x86_64
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ fetch-depth: 0
+ - name: install dependencies
+ run: ci/install-dependencies.sh
+ - name: build check
+ run: ci/run-build-and-tests.sh
+
gcc9-x86_64:
runs-on: ubuntu-latest
env:
@@ -97,6 +111,20 @@ jobs:
- name: build check
run: ci/run-build-and-tests.sh
+ gcc10-x86:
+ runs-on: ubuntu-latest
+ env:
+ CC: gcc-10
+ TARGET: x86
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ fetch-depth: 0
+ - name: install dependencies
+ run: ci/install-dependencies.sh
+ - name: build check
+ run: ci/run-build-and-tests.sh
+
gcc9-x86:
runs-on: ubuntu-latest
env:
@@ -181,6 +209,20 @@ jobs:
- name: build check
run: ci/run-build-and-tests.sh
+ gcc10-x32:
+ runs-on: ubuntu-latest
+ env:
+ CC: gcc-10
+ TARGET: x32
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ fetch-depth: 0
+ - name: install dependencies
+ run: ci/install-dependencies.sh
+ - name: build check
+ run: ci/run-build-and-tests.sh
+
gcc9-x32:
runs-on: ubuntu-latest
env: