Update Github release file to fix compile and distro issues

This commit is contained in:
Jonathan G Rennison
2022-01-05 19:21:17 +00:00
parent 03318720bf
commit 1c7f6b97a5

View File

@@ -375,18 +375,23 @@ jobs:
- container_image: "ubuntu:18.04" - container_image: "ubuntu:18.04"
bundle_name: "bionic" bundle_name: "bionic"
compiler: "g++-8" compiler: "g++-8"
c_compiler: "gcc-8"
- container_image: "ubuntu:20.04" - container_image: "ubuntu:20.04"
bundle_name: "focal" bundle_name: "focal"
compiler: "g++" compiler: "g++"
- container_image: "ubuntu:20.10" c_compiler: "gcc"
bundle_name: "groovy" - container_image: "ubuntu:21.10"
bundle_name: "impish"
compiler: "g++" compiler: "g++"
c_compiler: "gcc"
- container_image: "debian:buster" - container_image: "debian:buster"
bundle_name: "buster" bundle_name: "buster"
compiler: "g++" compiler: "g++"
c_compiler: "gcc"
- container_image: "debian:bullseye" - container_image: "debian:bullseye"
bundle_name: "bullseye" bundle_name: "bullseye"
compiler: "g++" compiler: "g++"
c_compiler: "gcc"
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
container: container:
@@ -413,6 +418,7 @@ jobs:
cmake \ cmake \
debhelper \ debhelper \
${{ matrix.compiler }} \ ${{ matrix.compiler }} \
${{ matrix.c_compiler }} \
git \ git \
make \ make \
openssl \ openssl \
@@ -439,7 +445,7 @@ jobs:
cd build cd build
echo "::group::CMake" echo "::group::CMake"
CXX=${{ matrix.compiler }} cmake ${GITHUB_WORKSPACE} \ CXX=${{ matrix.compiler }} CC=${{ matrix.c_compiler }} cmake ${GITHUB_WORKSPACE} \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \ -DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_PREFIX=/usr \
# EOF # EOF