diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2023-02-12 19:17:54 +0100 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2023-02-12 19:17:54 +0100 |
commit | a0deabd04c2a7c49efcdce6b33d9613d6d3485bd (patch) | |
tree | 320c678350aad5b8f8dca0c62bda38f2fc014895 | |
parent | 5adfc447700799439f96f22b874aac7069620073 (diff) | |
download | blogc-a0deabd04c2a7c49efcdce6b33d9613d6d3485bd.tar.gz blogc-a0deabd04c2a7c49efcdce6b33d9613d6d3485bd.tar.bz2 blogc-a0deabd04c2a7c49efcdce6b33d9613d6d3485bd.zip |
build: debian: disable tests for recent distros
git-fast-import hangs for some reason I don't know yet when running
under dpkg-buildpackage, but works fine otherwise.
-rw-r--r-- | .github/workflows/yatr.yaml | 4 | ||||
-rwxr-xr-x | build-aux/build-debian.sh | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/yatr.yaml b/.github/workflows/yatr.yaml index 8e5115d..897c41e 100644 --- a/.github/workflows/yatr.yaml +++ b/.github/workflows/yatr.yaml @@ -27,7 +27,7 @@ jobs: image: ubuntu-20.04 - target: dist-srpm compiler: gcc - image: ubuntu-22.04 + image: ubuntu-20.04 - target: deb-bullseye-amd64 compiler: gcc image: ubuntu-22.04 @@ -45,7 +45,7 @@ jobs: image: ubuntu-22.04 - target: deb-kinetic-amd64 compiler: gcc - image: ubuntu-20.04 + image: ubuntu-22.04 - target: static compiler: gcc image: ubuntu-20.04 diff --git a/build-aux/build-debian.sh b/build-aux/build-debian.sh index 68193a4..ff7d9db 100755 --- a/build-aux/build-debian.sh +++ b/build-aux/build-debian.sh @@ -21,15 +21,18 @@ case ${DIST} in ;; sid) REV="1~sid" + DEB_BUILD_OPTIONS="${DEB_BUILD_OPTIONS} nocheck" ;; focal) REV="1~11.0focal" ;; jammy) REV="1~12.0jammy" + DEB_BUILD_OPTIONS="${DEB_BUILD_OPTIONS} nocheck" ;; kinetic) REV="1~12.1kinetic" + DEB_BUILD_OPTIONS="${DEB_BUILD_OPTIONS} nocheck" ;; *) echo "error: unsupported dist: ${DIST}" |