Skip to content

Commit

Permalink
ci/cd: add tests for std/bufio to ci
Browse files Browse the repository at this point in the history
  • Loading branch information
mertcandav committed Nov 10, 2024
1 parent 42fa4fa commit 12aa849
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/std_tests_clang_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ jobs:
- 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/internal/conv
run: |
julec test --compiler clang -o test std/internal/conv
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/std_tests_clang_ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ jobs:
- 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/internal/conv
run: |
julec test --compiler clang -o test std/internal/conv
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/std_tests_clang_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ jobs:
- uses: actions/checkout@v4
- uses: julelang/ci@main

- name: Test - std/bufio
run: |
.\bin\julec test --compiler clang -o test std/bufio
./test
- name: Test - std/internal/conv
run: |
.\bin\julec test --compiler clang -o test std/internal/conv
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/std_tests_gcc_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ jobs:
- uses: actions/checkout@v4
- uses: julelang/ci@main

- name: Test - std/bufio
run: |
julec test --compiler gcc --compiler-path g++-13 -o test -t std/bufio
g++-13 -w --std=c++17 -O0 -Wl,-ld_classic -o test dist/ir.cpp
./test
- name: Test - std/internal/conv
run: |
julec test --compiler gcc --compiler-path g++-13 -o test -t std/internal/conv
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/std_tests_gcc_ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ jobs:
- uses: actions/checkout@v4
- uses: julelang/ci@main

- name: Test - std/bufio
run: |
julec test --compiler gcc -o test std/bufio
./test
- name: Test - std/internal/conv
run: |
julec test --compiler gcc -o test std/internal/conv
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/std_tests_gcc_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ jobs:
- uses: actions/checkout@v4
- uses: julelang/ci@main

- name: Test - std/bufio
run: |
.\bin\julec test --compiler gcc -o test std/bufio
./test
- name: Test - std/internal/conv
run: |
.\bin\julec test --compiler gcc -o test std/internal/conv
Expand Down

0 comments on commit 12aa849

Please sign in to comment.