Skip to content

Commit

Permalink
ci/cd: add tests for std::encoding::base64
Browse files Browse the repository at this point in the history
  • Loading branch information
mertcandav committed Jul 27, 2024
1 parent 29852da commit 764c16e
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/std_tests_clang_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,12 @@ jobs:
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::hash::adler32
run: |
julec test --compiler clang -o test std/hash/adler32
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 @@ -27,6 +27,11 @@ jobs:
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::hash::adler32
run: |
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 @@ -28,6 +28,11 @@ jobs:
.\bin\julec test --compiler clang -o test std/encoding/base32
./test
- name: Test - std::encoding::base64
run: |
.\bin\julec test --compiler clang -o test std/encoding/base64
./test
- name: Test - std::hash::adler32
run: |
.\bin\julec test --compiler clang -o test std/hash/adler32
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 @@ -32,6 +32,12 @@ jobs:
g++-13 -w --std=c++17 -O0 -Wl,-ld_classic -o test dist/ir.cpp
./test
- name: Test - std::encoding::base64
run: |
julec test --compiler gcc --compiler-path g++-13 -o test -t std/encoding/base64
g++-13 -w --std=c++17 -O0 -Wl,-ld_classic -o test dist/ir.cpp
./test
- name: Test - std::hash::adler32
run: |
julec test --compiler gcc --compiler-path g++-13 -o test -t std/hash/adler32
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 @@ -28,6 +28,11 @@ jobs:
julec test --compiler gcc -o test std/encoding/base32
./test
- name: Test - std::encoding::base64
run: |
julec test --compiler gcc -o test std/encoding/base64
./test
- name: Test - std::hash::adler32
run: |
julec test --compiler gcc -o test std/hash/adler32
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 @@ -28,6 +28,11 @@ jobs:
.\bin\julec test --compiler gcc -o test std/encoding/base32
./test
- name: Test - std::encoding::base64
run: |
.\bin\julec test --compiler gcc -o test std/encoding/base64
./test
- name: Test - std::hash::adler32
run: |
.\bin\julec test --compiler gcc -o test std/hash/adler32
Expand Down

0 comments on commit 764c16e

Please sign in to comment.