-
Notifications
You must be signed in to change notification settings - Fork 5
42 lines (39 loc) · 999 Bytes
/
test_suite.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: CBuilder Tests & C-Runtime Tests
on:
pull_request:
workflow_dispatch:
jobs:
catch2:
name: Testing C-Runtime
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Pre Clean
working-directory: ./c-runtime
run: make clean
- name: Exec makefile
working-directory: ./c-runtime
run: make test
- name: Clean Up
working-directory: ./c-runtime
run: make test_clean ; make clean
languagefeatures:
name: Testing CBuilder (Java)
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
- name: Build with Gradle
run: ./gradlew test