summaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml30
1 files changed, 30 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 6125178f..00c25048 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -42,6 +42,21 @@ jobs:
- name: build check
run: ci/run-build-and-tests.sh
+ gcc12-x86_64-without-nis:
+ runs-on: ubuntu-latest
+ env:
+ CC: gcc-12
+ TARGET: x86_64
+ USE_NIS: no
+ steps:
+ - uses: actions/checkout@v3
+ with:
+ fetch-depth: 0
+ - name: install dependencies
+ run: ci/install-dependencies.sh
+ - name: build check
+ run: ci/run-build-and-tests.sh
+
gcc11-x86_64:
runs-on: ubuntu-latest
env:
@@ -99,6 +114,21 @@ jobs:
- name: build check
run: ci/run-build-and-tests.sh
+ clang14-x86_64-without-nis:
+ runs-on: ubuntu-latest
+ env:
+ CC: clang-14
+ TARGET: x86_64
+ USE_NIS: no
+ steps:
+ - uses: actions/checkout@v3
+ with:
+ fetch-depth: 0
+ - name: install dependencies
+ run: ci/install-dependencies.sh
+ - name: build check
+ run: ci/run-build-and-tests.sh
+
clang14-x86_64:
runs-on: ubuntu-latest
env: