Define abstract syntax tree nodes, resolves #5 #38
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
name: testlib_internal_tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
testlib_internal_build_asan: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build the internal tests | |
run: make build_testlib_asan | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: testlib-binaries-asan | |
path: | | |
out/asan/*.test_internal | |
testlib/asan/*.so | |
if-no-files-found: error # Fail if no files are found | |
testlib_internal_run_asan: | |
# This ensures that the test job runs only if the build job succeeds | |
needs: testlib_internal_build_asan | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Download build artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: testlib-binaries-asan | |
- name: Make binaries executable | |
run: chmod +x ${{ github.workspace }}/out/asan/*.test_internal | |
- name: Run tests | |
run: make test_testlib_asan | |
testlib_internal_build_valgrind: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build the internal tests | |
run: make build_testlib_valgrind | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: testlib-binaries-valgrind | |
path: | | |
out/valgrind/*.test_internal | |
testlib/valgrind/*.so | |
if-no-files-found: error # Fail if no files are found | |
testlib_internal_run_valgrind: | |
# This ensures that the test job runs only if the build job succeeds | |
needs: testlib_internal_build_valgrind | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Valgrind | |
run: | | |
sudo apt-get update | |
sudo apt-get -y install valgrind | |
- name: Download build artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: testlib-binaries-valgrind | |
- name: Make binaries executable | |
run: chmod +x ${{ github.workspace }}/out/valgrind/*.test_internal | |
- name: Run tests | |
run: make test_testlib_valgrind |