Skip to content

std::comptime: add the == and != operator support for comptimeTypeInfo #698

std::comptime: add the == and != operator support for comptimeTypeInfo

std::comptime: add the == and != operator support for comptimeTypeInfo #698

name: Std Tests [Clang] - macOS
on: [push, pull_request]
jobs:
build-and-exec:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v4
- uses: julelang/ci@main
- name: Test - std::internal::conv
run: |
julec test --compiler clang -o test std/internal/conv
./test
- name: Test - std::internal::fastbytes
run: |
julec test --compiler clang -o test std/internal/fastbytes
./test
- name: Test - std::encoding::ascii85
run: |
julec test --compiler clang -o test std/encoding/ascii85
./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::maps
run: |
julec test --compiler clang -o test std/maps
./test
- name: Test - std::math::big
run: |
julec test --compiler clang -o test std/math/big
./test
- name: Test - std::net
run: |
julec test --compiler clang -o test std/net
./test
- name: Test - std::slices
run: |
julec test --compiler clang -o test std/slices
./test