diff options
author | George Melikov <[email protected]> | 2022-09-15 02:26:57 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2022-09-14 16:26:57 -0700 |
commit | 6f8602a5ede2c156f41630ba687701262f1350d6 (patch) | |
tree | cc733e5fb4e7bdc7b7c476e41507eccaddc7f350 /.github/workflows | |
parent | ccec88f11a44746f78f88aac90f5172a52e04506 (diff) |
CI: revert `--with-config=dist` to hotfix Ubuntu 20.04
Recently Github action runners started to fail on kmod build.
Revert --with-config=dist from ./configure section of github
runners to stabilize CI for now.
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: George Melikov <[email protected]>
Closes #13894
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/zfs-tests-functional.yml | 2 | ||||
-rw-r--r-- | .github/workflows/zfs-tests-sanity.yml | 2 | ||||
-rw-r--r-- | .github/workflows/zloop.yml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/zfs-tests-functional.yml b/.github/workflows/zfs-tests-functional.yml index 328cb97f1..0273610af 100644 --- a/.github/workflows/zfs-tests-functional.yml +++ b/.github/workflows/zfs-tests-functional.yml @@ -28,7 +28,7 @@ jobs: ./autogen.sh - name: Configure run: | - ./configure --enable-debug --enable-debuginfo --enable-asan --enable-ubsan --with-config=dist + ./configure --enable-debug --enable-debuginfo --enable-asan --enable-ubsan - name: Make run: | make -j$(nproc) --no-print-directory --silent pkg-utils pkg-kmod diff --git a/.github/workflows/zfs-tests-sanity.yml b/.github/workflows/zfs-tests-sanity.yml index 4c15cecf5..73606f909 100644 --- a/.github/workflows/zfs-tests-sanity.yml +++ b/.github/workflows/zfs-tests-sanity.yml @@ -24,7 +24,7 @@ jobs: ./autogen.sh - name: Configure run: | - ./configure --enable-debug --enable-debuginfo --enable-asan --enable-ubsan --with-config=dist + ./configure --enable-debug --enable-debuginfo --enable-asan --enable-ubsan - name: Make run: | make -j$(nproc) --no-print-directory --silent pkg-utils pkg-kmod diff --git a/.github/workflows/zloop.yml b/.github/workflows/zloop.yml index 64fe96a3a..d49eeae16 100644 --- a/.github/workflows/zloop.yml +++ b/.github/workflows/zloop.yml @@ -23,7 +23,7 @@ jobs: ./autogen.sh - name: Configure run: | - ./configure --enable-debug --enable-debuginfo --enable-asan --enable-ubsan --with-config=dist + ./configure --enable-debug --enable-debuginfo --enable-asan --enable-ubsan - name: Make run: | make -j$(nproc) --no-print-directory --silent pkg-utils pkg-kmod |