Skip to content

Commit

Permalink
CI/CD: add operator overloading test to test CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mertcandav committed Feb 28, 2024
1 parent e58691d commit 98404d2
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/tests_clang_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ jobs:
julec --compiler clang -o test tests/map_oop
./test
- name: Test - Operator Overloading
run: |
julec --compiler clang -o test tests/operator_overloading
./test
- name: Test - QuickSort
run: |
julec --compiler clang -o test tests/quicksort
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/tests_clang_ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ jobs:
julec --compiler clang -o test tests/map_oop
./test
- name: Test - Operator Overloading
run: |
julec --compiler clang -o test tests/operator_overloading
./test
- name: Test - QuickSort
run: |
julec --compiler clang -o test tests/quicksort
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/tests_gcc_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ jobs:
julec --compiler gcc --compiler-path g++-13 -o test tests/map_oop
./test
- name: Test - Operator Overloading
run: |
julec --compiler gcc --compiler-path g++-13 -o test tests/operator_overloading
./test
- name: Test - QuickSort
run: |
julec --compiler gcc --compiler-path g++-13 -o test tests/quicksort
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/tests_gcc_ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ jobs:
julec --compiler gcc -o test tests/map_oop
./test
- name: Test - Operator Overloading
run: |
julec --compiler gcc -o test tests/operator_overloading
./test
- name: Test - QuickSort
run: |
julec --compiler gcc -o test tests/quicksort
Expand Down

0 comments on commit 98404d2

Please sign in to comment.