summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry V. Levin <ldv@altlinux.org>2020-04-24 03:27:12 +0000
committerDmitry V. Levin <ldv@altlinux.org>2020-04-26 11:12:59 +0000
commit4bde09f0e9e06877a59e8a7b86fbd44524386ee8 (patch)
treef480ed6363722210c6d4565c010b54aba12f5fc1
parent3eb63ea48c0e408bce381e94f47e10ed578a8b2c (diff)
ci: add gcc-10 jobs
* .github/workflows/ci.yml (gcc10-x86_64, gcc10-x86, gcc10-x32): New jobs. * .travis.yml (matrix): Add gcc-10 jobs on x86_64, x86, x32, and ppc64le.
-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: