aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml224
1 files changed, 224 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
new file mode 100644
index 00000000..8e9b5309
--- /dev/null
+++ b/.github/workflows/ci.yml
@@ -0,0 +1,224 @@
+name: CI
+
+on: [push, pull_request]
+
+env:
+ VERBOSE: 1
+
+jobs:
+ whitespace-errors:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - name: check
+ run: git diff-index --check --cached 4b825dc642cb6eb9a060e54bf8d69288fbee4904
+
+ gcc9-x86_64:
+ runs-on: ubuntu-latest
+ env:
+ CC: gcc-9
+ 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
+
+ gcc8-x86_64:
+ runs-on: ubuntu-latest
+ env:
+ CC: gcc-8
+ 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
+
+ gcc-x86_64:
+ runs-on: ubuntu-latest
+ env:
+ CC: gcc
+ 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
+
+ clang9-x86_64:
+ runs-on: ubuntu-latest
+ env:
+ CC: clang-9
+ 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
+
+ clang8-x86_64:
+ runs-on: ubuntu-latest
+ env:
+ CC: clang-8
+ 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
+
+ clang-x86_64:
+ runs-on: ubuntu-latest
+ env:
+ CC: clang
+ 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:
+ runs-on: ubuntu-latest
+ env:
+ CC: gcc-9
+ 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
+
+ gcc8-x86:
+ runs-on: ubuntu-latest
+ env:
+ CC: gcc-8
+ 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
+
+ gcc-x86:
+ runs-on: ubuntu-latest
+ env:
+ CC: gcc
+ 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
+
+ clang9-x86:
+ runs-on: ubuntu-latest
+ env:
+ CC: clang-9
+ 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
+
+ clang8-x86:
+ runs-on: ubuntu-latest
+ env:
+ CC: clang-8
+ 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
+
+ clang-x86:
+ runs-on: ubuntu-latest
+ env:
+ CC: clang
+ 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-x32:
+ runs-on: ubuntu-latest
+ env:
+ CC: gcc-9
+ 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
+
+ gcc8-x32:
+ runs-on: ubuntu-latest
+ env:
+ CC: gcc-8
+ 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
+
+ gcc-x32:
+ runs-on: ubuntu-latest
+ env:
+ CC: gcc
+ 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