Enable merge queues #357
Workflow file for this run
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
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
merge_group: | |
branches: | |
- main | |
name: CI | |
jobs: | |
suite_matrix: | |
strategy: | |
matrix: | |
suite: [style, check, build, miri, asan, fuzz] | |
runs-on: ubuntu-latest | |
name: ${{ matrix.suite }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Rustup | |
run: | | |
rustup self update | |
rustup default stable | |
rustup update | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/ | |
target/ | |
key: ${{ runner.os }}-${{ matrix.suite }}-${{ hashFiles('**/Cargo.lock') }} | |
restore-keys: ${{ runner.os }}-$(rustc --version) | |
- name: Run | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_DEFAULT_REGION: us-east-1 | |
CARGO_INCREMENTAL: 0 | |
RUSTFLAGS: -Cdebuginfo=0 | |
run: | | |
echo "::group::Install dependencies" | |
set -o pipefail | |
cargo install htmlpty --locked --git https://github.com/saethlin/miri-tools | |
set +e | |
echo "::endgroup" | |
htmlpty bash ci.sh ${{ matrix.suite }} 2> output.html | |
FAILED=$? | |
aws s3 cp --content-type "text/html;charset=utf-8" output.html s3://miri-bot-dev/${GITHUB_REPOSITORY}/${GITHUB_RUN_ID}/${{ matrix.suite }}.html | |
LOG_URL=https://miri-bot-dev.s3.amazonaws.com/${GITHUB_REPOSITORY}/${GITHUB_RUN_ID}/${{ matrix.suite }}.html | |
if [ $FAILED -ne 0 ] | |
then | |
curl -L \ | |
-X POST \ | |
-H "Accept: application/vnd.github+json" \ | |
-H "Authorization: Bearer ${{ secrets.github_token }}" \ | |
-H "X-GitHub-Api-Version: 2022-11-28" \ | |
${{ github.event.pull_request.comments_url }} \ | |
-d "{\"body\":\"$LOG_URL\"}" | |
fi | |
exit $FAILED |