Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use older Ubuntu for Linux build for "more compatible binaries" #3

Merged
merged 4 commits into from
Oct 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,16 +46,16 @@ jobs:
package: ON,
path-cache: '${{ github.workspace }}\vcpkg\installed',
path-toolchain: 'C:/vcpkg/scripts/buildsystems/vcpkg.cmake',
os-id: 'linux'
os-id: 'windows'
}
- {
name: ubuntu-release-package-on,
os: ubuntu-latest,
os: ubuntu-20.04, # we want to use an older version in order to increase likelihood that binaries work on other distros
platform: x64-linux,
package: ON,
path-cache: '/usr/local/share/vcpkg/installed',
path-toolchain: '/usr/local/share/vcpkg/scripts/buildsystems/vcpkg.cmake',
os-id: 'windows'
os-id: 'linux'
}

steps:
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:

# gather the binaries
- name: Prepare Linux binaries
if: matrix.config.os == 'ubuntu-latest'
if: matrix.config.os == 'ubuntu-20.04'
working-directory: ${{github.workspace}}
shell: bash
run: |
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ cmake_policy(SET CMP0091 NEW) # enable new "MSVC runtime library selection" (htt
# Note that the CMake-variables <Projectname>_VERSION_MAJOR, <Projectname>_VERSION_MINOR, ... are defined by this statement,
# which are used in the build (so that - if changing the name here, change also the usage of those variables).
project ("czicompress"
VERSION 0.5.0)
VERSION 0.5.1)

set(czicompress_VERSION_PATCH_FLAGS "-alpha")
set(czicompress_VERSION_TWEAK_FLAGS "")
Expand Down
Loading