|
77 | 77 | SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
|
78 | 78 | SLACK_MESSAGE: "${{ job.status == 'success' && 'Ubuntu 24.04 package built and uploaded successfully' || 'Ubuntu 24.04 package build failed' }}"
|
79 | 79 |
|
| 80 | + ubuntu-24_04-arm-package: |
| 81 | + runs-on: ubuntu-24.04-arm |
| 82 | + env: |
| 83 | + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
| 84 | + steps: |
| 85 | + - uses: actions/checkout@v4 |
| 86 | + with: |
| 87 | + submodules: recursive |
| 88 | + - name: Fetch dependencies |
| 89 | + run: | |
| 90 | + sudo apt-get update |
| 91 | + sudo apt-get install --no-install-recommends -y g++ gdb flex bison cmake ninja-build maven jq libxml2-utils dpkg-dev ccache z3 |
| 92 | + - name: Confirm z3 solver is available and log the version installed |
| 93 | + run: z3 --version |
| 94 | + - name: Download cvc-5 from the releases page and make sure it can be deployed |
| 95 | + run: | |
| 96 | + wget https://github.com/cvc5/cvc5/releases/download/cvc5-${{env.cvc5-version}}/cvc5-Linux-arm64-static.zip |
| 97 | + unzip -j -d /usr/local/bin cvc5-Linux-arm64-static.zip cvc5-Linux-arm64-static/bin/cvc5 |
| 98 | + rm cvc5-Linux-arm64-static.zip |
| 99 | + cvc5 --version |
| 100 | + - name: Prepare ccache |
| 101 | + uses: actions/cache@v4 |
| 102 | + with: |
| 103 | + save-always: true |
| 104 | + path: .ccache |
| 105 | + key: ${{ runner.os }}-24.04-Arm-Release-${{ github.ref }}-${{ github.sha }}-RELEASEPKG |
| 106 | + restore-keys: |
| 107 | + ${{ runner.os }}-24.04-Arm-Release-${{ github.ref }} |
| 108 | + ${{ runner.os }}-24.04-Arm-Release |
| 109 | + - name: ccache environment |
| 110 | + run: | |
| 111 | + echo "CCACHE_BASEDIR=$PWD" >> $GITHUB_ENV |
| 112 | + echo "CCACHE_DIR=$PWD/.ccache" >> $GITHUB_ENV |
| 113 | + - name: Configure CMake |
| 114 | + 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" |
| 115 | + - name: Zero ccache stats and limit in size |
| 116 | + run: ccache -z --max-size=500M |
| 117 | + - name: Build using Ninja |
| 118 | + run: ninja -C build -j4 |
| 119 | + - name: Print ccache stats |
| 120 | + run: ccache -s |
| 121 | + - name: Run CTest |
| 122 | + run: cd build; ctest . -V -L CORE -C Release -j4 |
| 123 | + - name: Create packages |
| 124 | + id: create_packages |
| 125 | + run: | |
| 126 | + cd build |
| 127 | + ninja package |
| 128 | + deb_package_name="$(ls *.deb)" |
| 129 | + echo "deb_package=./build/$deb_package_name" >> $GITHUB_OUTPUT |
| 130 | + echo "deb_package_name=ubuntu-24.04-arm64-$deb_package_name" >> $GITHUB_OUTPUT |
| 131 | + - name: Get release info |
| 132 | + id: get_release_info |
| 133 | + uses: bruceadams/[email protected] |
| 134 | + - name: Upload binary packages |
| 135 | + uses: actions/upload-release-asset@v1 |
| 136 | + with: |
| 137 | + upload_url: ${{ steps.get_release_info.outputs.upload_url }} |
| 138 | + asset_path: ${{ steps.create_packages.outputs.deb_package }} |
| 139 | + asset_name: ${{ steps.create_packages.outputs.deb_package_name }} |
| 140 | + asset_content_type: application/x-deb |
| 141 | + - name: Slack notification of CI status |
| 142 | + uses: rtCamp/action-slack-notify@v2 |
| 143 | + if: success() || failure() |
| 144 | + env: |
| 145 | + SLACK_CHANNEL: aws-cbmc |
| 146 | + SLACK_COLOR: ${{ job.status }} |
| 147 | + SLACK_USERNAME: Github Actions CI bot |
| 148 | + SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} |
| 149 | + SLACK_MESSAGE: "${{ job.status == 'success' && 'Ubuntu 24.04 Arm package built and uploaded successfully' || 'Ubuntu 24.04 Arm package build failed' }}" |
| 150 | + |
80 | 151 | ubuntu-22_04-package:
|
81 | 152 | runs-on: ubuntu-22.04
|
82 | 153 | env:
|
|
0 commit comments