jule: update version #2506
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: Tests [GCC] - macOS | |
| on: [push, pull_request] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build-and-exec: | |
| runs-on: macOS-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: julelang/ci@main | |
| - name: Test - Standard Library | |
| run: | | |
| julec build --compiler gcc --compiler-path g++-14 -o test tests/std | |
| ./test | |
| - name: Test - Aliasing | |
| run: | | |
| julec build --compiler gcc --compiler-path g++-14 -o test tests/aliasing | |
| ./test | |
| - name: Test - Arrays | |
| run: | | |
| julec build --compiler gcc --compiler-path g++-14 -o test tests/arrays | |
| ./test | |
| - name: Test - Basic Calculator | |
| run: | | |
| julec build --compiler gcc --compiler-path g++-14 -o test tests/basic_calculator | |
| - name: Test - Channels | |
| run: | | |
| julec build --compiler gcc --compiler-path g++-14 -o test tests/channels | |
| ./test | |
| - name: Test - Cmplx | |
| run: | | |
| julec build --compiler gcc --compiler-path g++-14 -o test tests/cmplx | |
| ./test | |
| - name: Test - Comptime | |
| run: | | |
| julec build --compiler gcc --compiler-path g++-14 -o test tests/comptime | |
| ./test | |
| - name: Test - Concurrency | |
| run: | | |
| julec build --compiler gcc --compiler-path g++-14 -o test tests/concurrency | |
| ./test | |
| - name: Test - Defer | |
| run: | | |
| julec build --compiler gcc --compiler-path g++-14 -o test tests/defer | |
| ./test | |
| - name: Test - Dynamic | |
| run: | | |
| julec build --compiler gcc --compiler-path g++-14 -o test tests/dynamic | |
| ./test | |
| - name: Test - Enum | |
| run: | | |
| julec build --compiler gcc --compiler-path g++-14 -o test tests/enum | |
| ./test | |
| - name: Test - Fallible | |
| run: | | |
| julec build --compiler gcc --compiler-path g++-14 -o test tests/fallible | |
| ./test | |
| - name: Test - Generics | |
| run: | | |
| julec build --compiler gcc --compiler-path g++-14 -o test tests/generics | |
| ./test | |
| - name: Test - Levenshtein Distance | |
| run: | | |
| julec build --compiler gcc --compiler-path g++-14 -o test tests/levenshtein_distance | |
| ./test | |
| - name: Test - Maps | |
| run: | | |
| julec build --compiler gcc --compiler-path g++-14 -o test tests/maps | |
| ./test | |
| - name: Test - QuickSort | |
| run: | | |
| julec build --compiler gcc --compiler-path g++-14 -o test tests/quicksort | |
| ./test | |
| - name: Test - Sleep | |
| run: | | |
| julec build --compiler gcc --compiler-path g++-14 -o test tests/sleep | |
| ./test | |
| - name: Test - Syntax | |
| run: | | |
| julec build --compiler gcc --compiler-path g++-14 -o test tests/syntax | |
| ./test | |
| - name: Test - Traits | |
| run: | | |
| julec build --compiler gcc --compiler-path g++-14 -o test tests/traits | |
| ./test | |
| - name: Test - Wrap Around | |
| run: | | |
| julec build --compiler gcc --compiler-path g++-14 -po test tests/wraparound | |
| ./test |