summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/ci.yml42
-rw-r--r--.travis.yml16
2 files changed, 58 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:
diff --git a/.travis.yml b/.travis.yml
index b988418f..b8326d09 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -21,6 +21,10 @@ matrix:
arch: amd64
env:
- TARGET=x86_64
+ - compiler: gcc-10
+ arch: amd64
+ env:
+ - TARGET=x86_64
- compiler: gcc-9
arch: amd64
env:
@@ -37,6 +41,10 @@ matrix:
arch: amd64
env:
- TARGET=x86
+ - compiler: gcc-10
+ arch: amd64
+ env:
+ - TARGET=x86
- compiler: gcc-9
arch: amd64
env:
@@ -53,6 +61,10 @@ matrix:
arch: amd64
env:
- TARGET=x32
+ - compiler: gcc-10
+ arch: amd64
+ env:
+ - TARGET=x32
- compiler: gcc-9
arch: amd64
env:
@@ -93,6 +105,10 @@ matrix:
arch: ppc64le
env:
- TARGET=ppc64le
+ - compiler: gcc-10
+ arch: ppc64le
+ env:
+ - TARGET=ppc64le
- compiler: gcc-9
arch: ppc64le
env: