-
Notifications
You must be signed in to change notification settings - Fork 11
64 lines (52 loc) · 1.78 KB
/
linux.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# This file is part of the Fuzion language implementation.
#
# The Fuzion language implementation is free software: you can redistribute it
# and/or modify it under the terms of the GNU General Public License as published
# by the Free Software Foundation, version 3 of the License.
#
# The Fuzion language implementation is distributed in the hope that it will be
# useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
# License for more details.
#
# You should have received a copy of the GNU General Public License along with The
# Fuzion language implementation. If not, see <https://www.gnu.org/licenses/>.
# -----------------------------------------------------------------------
#
# Tokiwa Software GmbH, Germany
#
# GitHub Actions workflow to build and test Fuzion on Ubuntu.
#
# -----------------------------------------------------------------------
name: run tests on linux
permissions:
contents: read
on:
push:
branches:
- 'main'
pull_request: {}
env:
PRECONDITIONS: true
POSTCONDITIONS: true
jobs:
run_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1
with:
distribution: 'temurin'
java-version: '21'
- name: install dependencies
run: |
sudo apt-get update
sudo apt-get install libgc1 libgc-dev shellcheck
- name: check shell scripts
run: make shellcheck
- name: build java code
run: make javac
- name: build (no java modules)
run: make no-java
- name: run tests
run: make run_tests_parallel