julec: fix generates IR for fallible error message with an invalid me… #2346
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: Std Tests [Clang] - 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 - std/bufio | |
| run: | | |
| julec test --compiler clang -o test std/bufio | |
| ./test | |
| - name: Test - std/bytes | |
| run: | | |
| julec test --compiler clang -o test std/bytes | |
| ./test | |
| - name: Test - std/conv | |
| run: | | |
| julec test --compiler clang -o test std/conv/test | |
| ./test | |
| - name: Test - std/internal/byteslite | |
| run: | | |
| julec test --compiler clang -o test std/internal/byteslite/test | |
| ./test | |
| - name: Test - std/internal/conv | |
| run: | | |
| julec test --compiler clang -o test std/internal/conv/test | |
| ./test | |
| - name: Test - std/encoding/ascii85 | |
| run: | | |
| julec test --compiler clang -o test std/encoding/ascii85 | |
| ./test | |
| - name: Test - std/encoding/base32 | |
| run: | | |
| julec test --compiler clang -o test std/encoding/base32 | |
| ./test | |
| - name: Test - std/encoding/base64 | |
| run: | | |
| julec test --compiler clang -o test std/encoding/base64 | |
| ./test | |
| - name: Test - std/encoding/csv | |
| run: | | |
| julec test --compiler clang -o test std/encoding/csv | |
| ./test | |
| - name: Test - std/encoding/json | |
| run: | | |
| julec test --compiler clang -o test std/encoding/json | |
| ./test | |
| - name: Test - std/hash/adler32 | |
| run: | | |
| julec test --compiler clang -o test std/hash/adler32 | |
| ./test | |
| - name: Test - std/hash/fnv | |
| run: | | |
| julec test --compiler clang -o test std/hash/fnv | |
| ./test | |
| - name: Test - std/html | |
| run: | | |
| julec test --compiler clang -o test std/html | |
| ./test | |
| - name: Test - std/io | |
| run: | | |
| julec test --compiler clang -o test std/io/test | |
| ./test | |
| - name: Test - std/jule/constant/lit | |
| run: | | |
| julec test --compiler clang -o test std/jule/constant/lit | |
| ./test | |
| - name: Test - std/jule/sema | |
| run: | | |
| julec test --compiler clang -o test std/jule/sema | |
| ./test | |
| - name: Test - std/maps | |
| run: | | |
| julec test --compiler clang -o test std/maps | |
| ./test | |
| - name: Test - std/math | |
| run: | | |
| julec test --compiler clang -o test std/math/test | |
| ./test | |
| - name: Test - std/math/big | |
| run: | | |
| julec test --compiler clang -o test std/math/big | |
| ./test | |
| - name: Test - std/math/bits | |
| run: | | |
| julec test --compiler clang -o test std/math/bits/test | |
| ./test | |
| - name: Test - std/math/cmplx | |
| run: | | |
| julec test --compiler clang -o test std/math/cmplx | |
| ./test | |
| - name: Test - std/net | |
| run: | | |
| julec test --compiler clang -o test std/net | |
| ./test | |
| - name: Test - std/net/url | |
| run: | | |
| julec test --compiler clang -o test std/net/url | |
| ./test | |
| - name: Test - std/path | |
| run: | | |
| julec test --compiler clang -o test std/path | |
| ./test | |
| - name: Test - std/slices | |
| run: | | |
| julec test --compiler clang -o test std/slices | |
| ./test | |
| - name: Test - std/strings | |
| run: | | |
| julec test --compiler clang -o test std/strings/test | |
| ./test | |
| - name: Test - std/sync | |
| run: | | |
| julec test --compiler clang -o test std/sync/test | |
| ./test | |
| - name: Test - std/testing/iotest | |
| run: | | |
| julec test --compiler clang -o test std/testing/iotest | |
| ./test | |
| - name: Test - std/time | |
| run: | | |
| julec test --compiler clang -o test std/time/test | |
| ./test | |
| - name: Test - std/unicode/utf8 | |
| run: | | |
| julec test --compiler clang -o test std/unicode/utf8/test | |
| ./test | |
| - name: Test - std/unicode::utf16 | |
| run: | | |
| julec test --compiler clang -o test std/unicode/utf16/test | |
| ./test |