summaryrefslogtreecommitdiff
path: root/.github
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 /.github
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.
Diffstat (limited to '.github')
-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: