diff --git a/.github/workflows/std_tests_clang_macos.yml b/.github/workflows/std_tests_clang_macos.yml index c006cb22e..e0761492b 100644 --- a/.github/workflows/std_tests_clang_macos.yml +++ b/.github/workflows/std_tests_clang_macos.yml @@ -73,6 +73,11 @@ jobs: julec test --compiler clang -o test std/net ./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 diff --git a/.github/workflows/std_tests_clang_ubuntu.yml b/.github/workflows/std_tests_clang_ubuntu.yml index b0e2ec79e..c6a4e74e7 100644 --- a/.github/workflows/std_tests_clang_ubuntu.yml +++ b/.github/workflows/std_tests_clang_ubuntu.yml @@ -73,6 +73,11 @@ jobs: julec test --compiler clang -o test std/net ./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 diff --git a/.github/workflows/std_tests_clang_windows.yml b/.github/workflows/std_tests_clang_windows.yml index b73f4836f..6e2a3f4a4 100644 --- a/.github/workflows/std_tests_clang_windows.yml +++ b/.github/workflows/std_tests_clang_windows.yml @@ -73,6 +73,11 @@ jobs: .\bin\julec test --compiler clang -o test std/net ./test + - name: Test - std/path + run: | + .\bin\julec test --compiler clang -o test std/path + ./test + - name: Test - std/slices run: | .\bin\julec test --compiler clang -o test std/slices diff --git a/.github/workflows/std_tests_gcc_macos.yml b/.github/workflows/std_tests_gcc_macos.yml index cb76ebdb0..0d8b78bc8 100644 --- a/.github/workflows/std_tests_gcc_macos.yml +++ b/.github/workflows/std_tests_gcc_macos.yml @@ -86,6 +86,12 @@ jobs: g++-13 -w --std=c++17 -O0 -Wl,-ld_classic -o test dist/ir.cpp ./test + - name: Test - std/path + run: | + julec test --compiler gcc --compiler-path g++-13 -o test -t std/path + g++-13 -w --std=c++17 -O0 -Wl,-ld_classic -o test dist/ir.cpp + ./test + - name: Test - std/slices run: | julec test --compiler gcc --compiler-path g++-13 -o test -t std/slices diff --git a/.github/workflows/std_tests_gcc_ubuntu.yml b/.github/workflows/std_tests_gcc_ubuntu.yml index 17d87a28e..7fde26d57 100644 --- a/.github/workflows/std_tests_gcc_ubuntu.yml +++ b/.github/workflows/std_tests_gcc_ubuntu.yml @@ -73,6 +73,11 @@ jobs: julec test --compiler gcc -o test std/net ./test + - name: Test - std/path + run: | + julec test --compiler gcc -o test std/path + ./test + - name: Test - std/slices run: | julec test --compiler gcc -o test std/slices diff --git a/.github/workflows/std_tests_gcc_windows.yml b/.github/workflows/std_tests_gcc_windows.yml index 0f729c232..b78cb66f3 100644 --- a/.github/workflows/std_tests_gcc_windows.yml +++ b/.github/workflows/std_tests_gcc_windows.yml @@ -73,6 +73,11 @@ jobs: .\bin\julec test --compiler gcc -o test std/net ./test + - name: Test - std/path + run: | + .\bin\julec test --compiler gcc -o test std/path + ./test + - name: Test - std/slices run: | .\bin\julec test --compiler gcc -o test std/slices