Skip to content
This repository was archived by the owner on Feb 16, 2024. It is now read-only.

Build binaries on Ubuntu 20.04 instead of 22.04 #235

Merged
merged 1 commit into from
Feb 23, 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
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
matrix:
include:
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
os: ubuntu-20.04 # We don't use ubuntu-latest because we want to build against an old glibc version. (18.04 has glibc 2.27, 20.04 has glibc 2.31, 22.04 has glibc 2.35)
file-suffix: ""
- target: x86_64-pc-windows-gnu
os: windows-latest
Expand All @@ -37,7 +37,7 @@ jobs:
target: ${{ matrix.target }}
override: true
- name: Prepare Ubuntu env
if: matrix.os == 'ubuntu-latest'
if: matrix.os == 'ubuntu-20.04'
run: sudo apt install -y musl-tools
- name: Prepare Windows env
if: matrix.os == 'windows-latest'
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

## [Unreleased]

## [0.8.0] - 2023-02-23

### Changed

- Build binaries on Ubuntu 20.04 instead of 22.04 to have glibc 2.31 instead of 2.35. This allows the binary to run on older platforms ([#235](https://github.com/stackabletech/stackablectl/pull/235))

### Fixed

- Use stable helm repo for operators ending with `-dev` ([#234](https://github.com/stackabletech/stackablectl/pull/234))

## [0.7.0] - 2023-02-14

### Added
Expand Down