Add wait event for rewind worker #512
This file contains hidden or 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
name: build | |
on: | |
push: | |
pull_request: | |
jobs: | |
test: | |
runs-on: | |
- ubuntu-24.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
compiler: [clang, gcc] | |
check_type: [normal, debug] | |
env: | |
LLVM_VER: 19 | |
COMPILER: ${{ matrix.compiler }} | |
CHECK_TYPE: ${{ matrix.check_type }} | |
steps: | |
- name: Checkout code into workspace directory | |
uses: actions/checkout@v2 | |
- name: Setup prerequisites | |
run: bash ./ci/prerequisites.sh | |
- name: Build | |
run: bash ./ci/build.sh | |
- name: Check | |
run: bash ./ci/check.sh | |
- name: Check output | |
run: bash ./ci/check_output.sh | |
if: ${{ success() || failure() }} |