brgen test #1877
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
name: brgen-test | |
run-name: brgen test | |
on: | |
- push | |
jobs: | |
test-linux: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Timeline | |
uses: Kesin11/actions-timeline@3046833d9aacfd7745c5264b7f3af851c3e2a619 # v2.2.1 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Checkout repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Set up Ninja | |
uses: seanmiddleditch/gha-setup-ninja@96bed6edff20d1dd61ecff9b75cc519d516e6401 # master | |
- name: Set up Clang | |
uses: egor-tensin/setup-clang@ef434b41eb33a70396fb336b1bae39c76d740c3d # v1.4 | |
with: | |
version: latest | |
platform: x64 | |
- name: Install libc++-dev and libc++abi-dev | |
run: sudo apt-get install libc++-dev libc++abi-dev -y | |
- name: Build | |
run: | | |
. build.sh | |
- name: Test | |
run: | | |
CTEST_OUTPUT_ON_FAILURE=1 BASE_PATH=${{ github.workspace }} ninja -C built/native/Debug test |