-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix workflows and remove soon to be EOL release
update workflows to give better feedback in logs remove ubuntu 20.04 that will be EOL 25.04 add ubuntu 24.04 update mac workflow so it works in latest macos update 32bit build so it works with xxhash update github action versions Signed-off-by: Robert Marklund <[email protected]>
- Loading branch information
1 parent
9e5d7a3
commit 30e7185
Showing
9 changed files
with
79 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
name: gcc 11 | ||
name: gcc 14 | ||
|
||
on: [push, pull_request] | ||
|
||
|
||
jobs: | ||
build: | ||
name: Compiles with gcc 11 | ||
runs-on: ubuntu-20.04 | ||
name: Compiles with gcc 14 | ||
runs-on: ubuntu-24.04 | ||
|
||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v3 | ||
- name: install packages | ||
run: sudo apt install build-essential nettle-dev libxxhash-dev time gcc-11 g++-11 | ||
run: sudo apt install build-essential nettle-dev libxxhash-dev time gcc-14 g++-14 | ||
- name: bootstrap | ||
run: ./bootstrap.sh | ||
- name: configure | ||
run: ./configure CXX=g++-11 | ||
run: ./configure CXX=g++-14 | ||
- name: build | ||
run: make | ||
- name: check | ||
run: make check | ||
- name: store the logs as an artifact | ||
if: ${{ always() }} | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
path: '**/*.log' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters