Skip to content

Commit

Permalink
CI/CD: fix Tests [GCC] - macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
mertcandav committed Feb 26, 2024
1 parent 4971849 commit e110aaa
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/tests_gcc_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,64 +14,64 @@ jobs:

- name: Test - Standard Library
run: |
julec --compiler gcc --compiler-path g++-13 tests/std
julec --compiler gcc --compiler-path g++-13 -o test tests/std
./test
- name: Test - Array OOP
run: |
julec --compiler gcc --compiler-path g++-13 tests/array_oop
julec --compiler gcc --compiler-path g++-13 -o test tests/array_oop
./test
- name: Assertion
run: |
julec --compiler gcc --compiler-path g++-13 tests/assertion
julec --compiler gcc --compiler-path g++-13 -o test tests/assertion
./test
- name: Test - Basic Calculator
run: |
julec --compiler gcc --compiler-path g++-13 tests/basic_calculator
julec --compiler gcc --compiler-path g++-13 -o test tests/basic_calculator
- name: Test - Concurrency
run: |
julec --compiler gcc --compiler-path g++-13 tests/concurrency
julec --compiler gcc --compiler-path g++-13 -o test tests/concurrency
./test
- name: Test - Exceptionals
run: |
julec --compiler gcc --compiler-path g++-13 tests/exceptionals
julec --compiler gcc --compiler-path g++-13 -o test tests/exceptionals
./test
- name: Test - Generics
run: |
julec --compiler gcc --compiler-path g++-13 tests/generics
julec --compiler gcc --compiler-path g++-13 -o test tests/generics
./test
- name: Test - Levenshtein Distance
run: |
julec --compiler gcc --compiler-path g++-13 tests/levenshtein_distance
julec --compiler gcc --compiler-path g++-13 -o test tests/levenshtein_distance
./test
- name: Test - Map OOP
run: |
julec --compiler gcc --compiler-path g++-13 tests/map_oop
julec --compiler gcc --compiler-path g++-13 -o test tests/map_oop
./test
- name: Test - QuickSort
run: |
julec --compiler gcc --compiler-path g++-13 tests/quicksort
julec --compiler gcc --compiler-path g++-13 -o test tests/quicksort
./test
- name: Test - Sleep
run: |
julec --compiler gcc --compiler-path g++-13 tests/sleep
julec --compiler gcc --compiler-path g++-13 -o test tests/sleep
./test
- name: Test - Syntax
run: |
julec --compiler gcc --compiler-path g++-13 tests/syntax
julec --compiler gcc --compiler-path g++-13 -o test tests/syntax
./test
- name: Test - Traits
run: |
julec --compiler gcc --compiler-path g++-13 tests/traits
julec --compiler gcc --compiler-path g++-13 -o test tests/traits
./test

0 comments on commit e110aaa

Please sign in to comment.