diff --git a/.ci_scripts/package.sh b/.ci_scripts/package.sh index 4ade8a3863..f090f1d524 100755 --- a/.ci_scripts/package.sh +++ b/.ci_scripts/package.sh @@ -21,7 +21,7 @@ if [ "$SOURCE" = "ON" ]; then cpack --config CPackSourceConfig.cmake -G TGZ; fi -if ([ "$OS_NAME" = "ubuntu-latest" ]) && [ "$PACKAGE" = "ON" ]; then +if ([[ "$OS_NAME" = "ubuntu"* ]]) && [ "$PACKAGE" = "ON" ]; then ../.ci_scripts/build_appimage.sh # extract built appimages for uploading mv ~/out/* . diff --git a/.github/workflows/gnulinux.yml b/.github/workflows/gnulinux.yml index 2fbbc26956..944c93345a 100644 --- a/.github/workflows/gnulinux.yml +++ b/.github/workflows/gnulinux.yml @@ -33,11 +33,11 @@ jobs: # TODO Working Linux 32-bit packaging # TODO CTest & coverage workflow implement arch: [32, 64] - os: [ubuntu-latest] + os: [ubuntu-22.04] compiler: [gcc, clang] build_type: [Debug, Release] include: - - os: ubuntu-latest + - os: ubuntu-22.04 build_type: Release compiler: gcc arch: 64