brgen test #4886
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: brgen-test | |
| run-name: brgen test | |
| on: | |
| - push | |
| jobs: | |
| test-linux: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - name: Timeline | |
| uses: Kesin11/actions-timeline@7bf79990b7c09f5dfb570ac30b814ca597bd538e # v3.1 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Checkout repository | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - name: Set up Ninja | |
| uses: seanmiddleditch/gha-setup-ninja@7e868db0f3406270dd46e1dac26c65f621456723 # master | |
| - name: Set up Clang | |
| uses: egor-tensin/setup-clang@23bc15cd4207e45f1566447deb48f4ff3ef932cb # v2.3 | |
| 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: | | |
| FUTILS_DIR=./utils python build.py native | |
| - name: Test | |
| run: | | |
| CTEST_OUTPUT_ON_FAILURE=1 BASE_PATH=${{ github.workspace }} ninja -C built/native/Debug test |