aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry V. Levin <ldv@strace.io>2024-10-13 08:00:00 +0000
committerDmitry V. Levin <ldv@strace.io>2024-10-13 08:00:00 +0000
commit22963de9728c3fc90548ecc4da525acde310df4b (patch)
tree81391764de324263ccccce1ead44b94717f4fedb
parent2f468e426594266e33981927df0b0e2502eeed22 (diff)
downloadpam-22963de9728c3fc90548ecc4da525acde310df4b.tar.gz
pam-22963de9728c3fc90548ecc4da525acde310df4b.tar.bz2
pam-22963de9728c3fc90548ecc4da525acde310df4b.zip
.github: add a few more meson jobs
-rw-r--r--.github/workflows/ci.yml391
1 files changed, 391 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index d1138a64..3f70fd00 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -177,6 +177,334 @@ jobs:
- name: build check
run: ci/meson-build.sh
+ meson-gcc12-x86_64-vendordir:
+ runs-on: ubuntu-24.04
+ env:
+ BUILD: meson
+ CC: gcc-12
+ TARGET: x86_64
+ VENDORDIR: ${prefix}/share/etc
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+ - name: install dependencies
+ run: ci/install-dependencies.sh
+ - name: build check
+ run: ci/meson-build.sh
+
+ meson-gcc12-x86_64-openssl:
+ runs-on: ubuntu-24.04
+ env:
+ BUILD: meson
+ CC: gcc-12
+ TARGET: x86_64
+ USE_OPENSSL: yes
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+ - name: install dependencies
+ run: ci/install-dependencies.sh
+ - name: build check
+ run: ci/meson-build.sh
+
+ meson-gcc12-x86_64-sanitizers:
+ runs-on: ubuntu-24.04
+ env:
+ BUILD: meson
+ CC: gcc-12
+ CFLAGS: '-O1 -g -fsanitize=address -fsanitize-address-use-after-scope -fno-omit-frame-pointer -fsanitize=undefined -Wno-error=inline -Wno-error=format-overflow'
+ LDFLAGS: '-fsanitize=address -fsanitize-address-use-after-scope -fno-omit-frame-pointer -fsanitize=undefined'
+ ASAN_OPTIONS: strict_string_checks=1:detect_stack_use_after_return=1:check_initialization_order=1:strict_init_order=1
+ UBSAN_OPTIONS: print_stacktrace=1:print_summary=1:halt_on_error=1
+ TARGET: x86_64
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+ - name: install dependencies
+ run: ci/install-dependencies.sh
+ - name: build check
+ run: ci/meson-build.sh
+
+ meson-gcc12-x86_64:
+ runs-on: ubuntu-24.04
+ env:
+ BUILD: meson
+ CC: gcc-12
+ TARGET: x86_64
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+ - name: install dependencies
+ run: ci/install-dependencies.sh
+ - name: build check
+ run: ci/meson-build.sh
+
+ meson-gcc12-x86_64-debug:
+ runs-on: ubuntu-24.04
+ env:
+ BUILD: meson
+ CC: gcc-12
+ TARGET: x86_64
+ ENABLE_DEBUG: yes
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+ - name: install dependencies
+ run: ci/install-dependencies.sh
+ - name: build check
+ run: ci/meson-build.sh
+
+ meson-gcc11-x86_64-vendordir:
+ runs-on: ubuntu-24.04
+ env:
+ BUILD: meson
+ CC: gcc-11
+ TARGET: x86_64
+ VENDORDIR: ${prefix}/share/etc
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+ - name: install dependencies
+ run: ci/install-dependencies.sh
+ - name: build check
+ run: ci/meson-build.sh
+
+ meson-gcc11-x86_64-openssl:
+ runs-on: ubuntu-24.04
+ env:
+ BUILD: meson
+ CC: gcc-11
+ TARGET: x86_64
+ USE_OPENSSL: yes
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+ - name: install dependencies
+ run: ci/install-dependencies.sh
+ - name: build check
+ run: ci/meson-build.sh
+
+ meson-gcc11-x86_64-sanitizers:
+ runs-on: ubuntu-24.04
+ env:
+ BUILD: meson
+ CC: gcc-11
+ CFLAGS: '-O1 -g -fsanitize=address -fsanitize-address-use-after-scope -fno-omit-frame-pointer -fsanitize=undefined -Wno-error=inline -Wno-error=format-overflow'
+ LDFLAGS: '-fsanitize=address -fsanitize-address-use-after-scope -fno-omit-frame-pointer -fsanitize=undefined'
+ ASAN_OPTIONS: strict_string_checks=1:detect_stack_use_after_return=1:check_initialization_order=1:strict_init_order=1
+ UBSAN_OPTIONS: print_stacktrace=1:print_summary=1:halt_on_error=1
+ TARGET: x86_64
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+ - name: install dependencies
+ run: ci/install-dependencies.sh
+ - name: build check
+ run: ci/meson-build.sh
+
+ meson-gcc11-x86_64:
+ runs-on: ubuntu-24.04
+ env:
+ BUILD: meson
+ CC: gcc-11
+ TARGET: x86_64
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+ - name: install dependencies
+ run: ci/install-dependencies.sh
+ - name: build check
+ run: ci/meson-build.sh
+
+ meson-gcc11-x86_64-debug:
+ runs-on: ubuntu-24.04
+ env:
+ BUILD: meson
+ CC: gcc-11
+ TARGET: x86_64
+ ENABLE_DEBUG: yes
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+ - name: install dependencies
+ run: ci/install-dependencies.sh
+ - name: build check
+ run: ci/meson-build.sh
+
+ meson-gcc10-x86_64-vendordir:
+ runs-on: ubuntu-24.04
+ env:
+ BUILD: meson
+ CC: gcc-10
+ TARGET: x86_64
+ VENDORDIR: ${prefix}/share/etc
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+ - name: install dependencies
+ run: ci/install-dependencies.sh
+ - name: build check
+ run: ci/meson-build.sh
+
+ meson-gcc10-x86_64-openssl:
+ runs-on: ubuntu-24.04
+ env:
+ BUILD: meson
+ CC: gcc-10
+ TARGET: x86_64
+ USE_OPENSSL: yes
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+ - name: install dependencies
+ run: ci/install-dependencies.sh
+ - name: build check
+ run: ci/meson-build.sh
+
+ meson-gcc10-x86_64-sanitizers:
+ runs-on: ubuntu-24.04
+ env:
+ BUILD: meson
+ CC: gcc-10
+ CFLAGS: '-O1 -g -fsanitize=address -fsanitize-address-use-after-scope -fno-omit-frame-pointer -fsanitize=undefined -Wno-error=inline -Wno-error=format-overflow'
+ LDFLAGS: '-fsanitize=address -fsanitize-address-use-after-scope -fno-omit-frame-pointer -fsanitize=undefined'
+ ASAN_OPTIONS: strict_string_checks=1:detect_stack_use_after_return=1:check_initialization_order=1:strict_init_order=1
+ UBSAN_OPTIONS: print_stacktrace=1:print_summary=1:halt_on_error=1
+ TARGET: x86_64
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+ - name: install dependencies
+ run: ci/install-dependencies.sh
+ - name: build check
+ run: ci/meson-build.sh
+
+ meson-gcc10-x86_64:
+ runs-on: ubuntu-24.04
+ env:
+ BUILD: meson
+ CC: gcc-10
+ TARGET: x86_64
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+ - name: install dependencies
+ run: ci/install-dependencies.sh
+ - name: build check
+ run: ci/meson-build.sh
+
+ meson-gcc10-x86_64-debug:
+ runs-on: ubuntu-24.04
+ env:
+ BUILD: meson
+ CC: gcc-10
+ TARGET: x86_64
+ ENABLE_DEBUG: yes
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+ - name: install dependencies
+ run: ci/install-dependencies.sh
+ - name: build check
+ run: ci/meson-build.sh
+
+ meson-gcc9-x86_64-vendordir:
+ runs-on: ubuntu-24.04
+ env:
+ BUILD: meson
+ CC: gcc-9
+ TARGET: x86_64
+ VENDORDIR: ${prefix}/share/etc
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+ - name: install dependencies
+ run: ci/install-dependencies.sh
+ - name: build check
+ run: ci/meson-build.sh
+
+ meson-gcc9-x86_64-openssl:
+ runs-on: ubuntu-24.04
+ env:
+ BUILD: meson
+ CC: gcc-9
+ TARGET: x86_64
+ USE_OPENSSL: yes
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+ - name: install dependencies
+ run: ci/install-dependencies.sh
+ - name: build check
+ run: ci/meson-build.sh
+
+ meson-gcc9-x86_64-sanitizers:
+ runs-on: ubuntu-24.04
+ env:
+ BUILD: meson
+ CC: gcc-9
+ CFLAGS: '-O1 -g -fsanitize=address -fsanitize-address-use-after-scope -fno-omit-frame-pointer -fsanitize=undefined -Wno-error=inline -Wno-error=format-overflow'
+ LDFLAGS: '-fsanitize=address -fsanitize-address-use-after-scope -fno-omit-frame-pointer -fsanitize=undefined'
+ ASAN_OPTIONS: strict_string_checks=1:detect_stack_use_after_return=1:check_initialization_order=1:strict_init_order=1
+ UBSAN_OPTIONS: print_stacktrace=1:print_summary=1:halt_on_error=1
+ TARGET: x86_64
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+ - name: install dependencies
+ run: ci/install-dependencies.sh
+ - name: build check
+ run: ci/meson-build.sh
+
+ meson-gcc9-x86_64:
+ runs-on: ubuntu-24.04
+ env:
+ BUILD: meson
+ CC: gcc-9
+ TARGET: x86_64
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+ - name: install dependencies
+ run: ci/install-dependencies.sh
+ - name: build check
+ run: ci/meson-build.sh
+
+ meson-gcc9-x86_64-debug:
+ runs-on: ubuntu-24.04
+ env:
+ BUILD: meson
+ CC: gcc-9
+ TARGET: x86_64
+ ENABLE_DEBUG: yes
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+ - name: install dependencies
+ run: ci/install-dependencies.sh
+ - name: build check
+ run: ci/meson-build.sh
+
meson-clang18-x86_64-vendordir:
runs-on: ubuntu-24.04
env:
@@ -429,6 +757,69 @@ jobs:
- name: build check
run: ci/meson-build.sh
+ meson-clang14-x86_64-vendordir:
+ runs-on: ubuntu-24.04
+ env:
+ BUILD: meson
+ CC: clang-14
+ TARGET: x86_64
+ VENDORDIR: ${prefix}/share/etc
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+ - name: install dependencies
+ run: ci/install-dependencies.sh
+ - name: build check
+ run: ci/meson-build.sh
+
+ meson-clang14-x86_64-openssl:
+ runs-on: ubuntu-24.04
+ env:
+ BUILD: meson
+ CC: clang-14
+ TARGET: x86_64
+ USE_OPENSSL: yes
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+ - name: install dependencies
+ run: ci/install-dependencies.sh
+ - name: build check
+ run: ci/meson-build.sh
+
+ meson-clang14-x86_64:
+ runs-on: ubuntu-24.04
+ env:
+ BUILD: meson
+ CC: clang-14
+ TARGET: x86_64
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+ - name: install dependencies
+ run: ci/install-dependencies.sh
+ - name: build check
+ run: ci/meson-build.sh
+
+ meson-clang14-x86_64-debug:
+ runs-on: ubuntu-24.04
+ env:
+ BUILD: meson
+ CC: clang-14
+ TARGET: x86_64
+ ENABLE_DEBUG: yes
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+ - name: install dependencies
+ run: ci/install-dependencies.sh
+ - name: build check
+ run: ci/meson-build.sh
+
gcc13-x86_64-vendordir:
runs-on: ubuntu-24.04
env: