-
Notifications
You must be signed in to change notification settings - Fork 9
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
chore: use explicit os versions #634
Conversation
This week github updated the `ubuntu-latest` tag to be ubuntu-24.04. This meant that version 0.47.0 of ceramic-one no longer runs on ubuntu-22. This is unexpected and not in our control. With this change we explicitly name the os versions we target (this matters because of glibc versions). This means we will need to add new versions and deprecate old versions as they are released.
name: ceramic-one_${{ matrix.target }}-${{ matrix.os }} | ||
path: ceramic-one_${{ matrix.target }}-${{ matrix.os }}.bin.tar.gz | ||
- name: Archive Debian Package | ||
uses: actions/upload-artifact@v3 | ||
if: ${{ matrix.ext == 'deb' }} | ||
with: | ||
name: ceramic-one_${{ matrix.target }} | ||
path: ceramic-one_${{ matrix.target }}.tar.gz | ||
name: ceramic-one_${{ matrix.target }}-${{ matrix.os }} | ||
path: ceramic-one_${{ matrix.target }}-${{ matrix.os }}.tar.gz |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We'll also need to use the new OS suffix in ci-scripts/package.sh
when preparing the archive, and in .github/workflows/update-homebrew.yml
when retrieving the archive SHA.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually, wait, let me check that again.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I think we'll need to update the other two files since the specific OS version is now also part of the archive name.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As well as this js-ceramic
file.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚀
This week github updated the
ubuntu-latest
tag to be ubuntu-24.04. This meant that version 0.47.0 of ceramic-one no longer runs on ubuntu-22. This is unexpected and not in our control. With this change we explicitly name the os versions we target (this matters because of glibc versions). This means we will need to add new versions and deprecate old versions as they are released.