Thread Environment Block based Thread-Local Variable access (#1754) #405
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: libraries-test-suite | |
| on: | |
| push: | |
| paths-ignore: ['documentation/**', '**.rst', '**.md'] | |
| pull_request: | |
| branches: | |
| - master | |
| paths-ignore: ['documentation/**', '**.rst', '**.md'] | |
| # This enables the Run Workflow button on the Actions tab. | |
| workflow_dispatch: | |
| jobs: | |
| libraries-test-suite: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [macos-latest, ubuntu-latest] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| path: od | |
| submodules: recursive | |
| - uses: dylan-lang/install-opendylan@v3 | |
| - name: Build libraries-test-suite-app | |
| run: | | |
| # We want to use the registry in the sources directory... | |
| cd od/sources | |
| dylan-compiler -build -jobs 3 libraries-test-suite-app | |
| - name: Run libraries-test-suite-app | |
| run: | | |
| od/sources/_build/bin/libraries-test-suite-app --tag=-benchmark |