-
Notifications
You must be signed in to change notification settings - Fork 987
86 lines (86 loc) · 2.45 KB
/
test.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
---
name: test
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
config:
- machine: a6osx
os: macos-11
- machine: ta6osx
os: macos-11
- machine: a6osx
os: macos-12
- machine: ta6osx
os: macos-12
- machine: a6osx
os: macos-13
- machine: ta6osx
os: macos-13
- machine: i3le
os: ubuntu-20.04
- machine: ti3le
os: ubuntu-20.04
- machine: a6le
os: ubuntu-20.04
- machine: ta6le
os: ubuntu-20.04
- machine: a6le
os: ubuntu-22.04
- machine: ta6le
os: ubuntu-22.04
- machine: i3nt
os: windows-2019
- machine: i3nt
os: windows-2022
- machine: ti3nt
os: windows-2019
- machine: ti3nt
os: windows-2022
- machine: a6nt
os: windows-2019
- machine: a6nt
os: windows-2022
- machine: ta6nt
os: windows-2019
- machine: ta6nt
os: windows-2022
runs-on: ${{ matrix.config.os }}
env:
TARGET_MACHINE: ${{ matrix.config.machine }}
defaults:
run:
shell: bash
working-directory: ${{ github.workspace }}
steps:
- name: Configure git on Windows
if: ${{ runner.os == 'Windows' }}
run: git config --global core.autocrlf false
- name: Checkout
uses: actions/checkout@v3
- name: Setup 32-bit Linux
if: ${{ endsWith(matrix.config.machine, 'i3le') }}
run: |
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install gcc-multilib lib32ncurses5-dev uuid-dev:i386
- name: Build Chez Scheme
run: .github/workflows/build.sh
- name: Run tests
timeout-minutes: 30
run: .github/workflows/test.sh
- name: Archive workspace
if: always()
run: tar -c -h -z -f $TARGET_MACHINE.tgz $TARGET_MACHINE
- name: Upload archive
if: always()
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.config.machine }}
path: ${{ matrix.config.machine }}.tgz
- name: Check test results
run: |
cat $TARGET_MACHINE/mats/summary
diff -q .github/workflows/summary $TARGET_MACHINE/mats/summary