-
Notifications
You must be signed in to change notification settings - Fork 273
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8522 from tautschnig/release-24.04
Build release packages for Ubuntu 24.04
- Loading branch information
Showing
1 changed file
with
71 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,77 @@ env: | |
|
||
name: Upload additional release assets | ||
jobs: | ||
ubuntu-24_04-package: | ||
runs-on: ubuntu-24.04 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- name: Fetch dependencies | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install --no-install-recommends -y g++ gdb flex bison cmake ninja-build maven jq libxml2-utils dpkg-dev ccache z3 | ||
- name: Confirm z3 solver is available and log the version installed | ||
run: z3 --version | ||
- name: Download cvc-5 from the releases page and make sure it can be deployed | ||
run: | | ||
wget https://github.com/cvc5/cvc5/releases/download/cvc5-${{env.cvc5-version}}/cvc5-Linux-static.zip | ||
unzip -j -d /usr/local/bin cvc5-Linux-static.zip cvc5-Linux-static/bin/cvc5 | ||
rm cvc5-Linux-static.zip | ||
cvc5 --version | ||
- name: Prepare ccache | ||
uses: actions/cache@v4 | ||
with: | ||
save-always: true | ||
path: .ccache | ||
key: ${{ runner.os }}-24.04-Release-${{ github.ref }}-${{ github.sha }}-RELEASEPKG | ||
restore-keys: | ||
${{ runner.os }}-24.04-Release-${{ github.ref }} | ||
${{ runner.os }}-24.04-Release | ||
- name: ccache environment | ||
run: | | ||
echo "CCACHE_BASEDIR=$PWD" >> $GITHUB_ENV | ||
echo "CCACHE_DIR=$PWD/.ccache" >> $GITHUB_ENV | ||
- name: Configure CMake | ||
run: cmake -S . -Bbuild -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=/usr/bin/gcc -DCMAKE_CXX_COMPILER=/usr/bin/g++ -Dsat_impl="minisat2;cadical" | ||
- name: Zero ccache stats and limit in size | ||
run: ccache -z --max-size=500M | ||
- name: Build using Ninja | ||
run: ninja -C build -j4 | ||
- name: Print ccache stats | ||
run: ccache -s | ||
- name: Run CTest | ||
run: cd build; ctest . -V -L CORE -C Release -j4 | ||
- name: Create packages | ||
id: create_packages | ||
run: | | ||
cd build | ||
ninja package | ||
deb_package_name="$(ls *.deb)" | ||
echo "deb_package=./build/$deb_package_name" >> $GITHUB_OUTPUT | ||
echo "deb_package_name=ubuntu-24.04-$deb_package_name" >> $GITHUB_OUTPUT | ||
- name: Get release info | ||
id: get_release_info | ||
uses: bruceadams/[email protected] | ||
- name: Upload binary packages | ||
uses: actions/upload-release-asset@v1 | ||
with: | ||
upload_url: ${{ steps.get_release_info.outputs.upload_url }} | ||
asset_path: ${{ steps.create_packages.outputs.deb_package }} | ||
asset_name: ${{ steps.create_packages.outputs.deb_package_name }} | ||
asset_content_type: application/x-deb | ||
- name: Slack notification of CI status | ||
uses: rtCamp/action-slack-notify@v2 | ||
if: success() || failure() | ||
env: | ||
SLACK_CHANNEL: aws-cbmc | ||
SLACK_COLOR: ${{ job.status }} | ||
SLACK_USERNAME: Github Actions CI bot | ||
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | ||
SLACK_MESSAGE: "${{ job.status == 'success' && 'Ubuntu 24.04 package built and uploaded successfully' || 'Ubuntu 24.04 package build failed' }}" | ||
|
||
ubuntu-22_04-package: | ||
runs-on: ubuntu-22.04 | ||
env: | ||
|