-
Notifications
You must be signed in to change notification settings - Fork 1
38 lines (36 loc) · 1.11 KB
/
test.yml
File metadata and controls
38 lines (36 loc) · 1.11 KB
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
name: Test
on:
push:
pull_request:
workflow_dispatch:
schedule:
- cron: "0 8 * * 1" # Run every Monday at 08:00
jobs:
test:
strategy:
# Default value means that a failure in one combination cancels all
fail-fast: false
matrix:
smalltalk: [ Pharo64-13, Pharo64-14 ]
os: [ macos-latest, windows-latest ] #ubuntu-latest has some test failures
runs-on: ${{ matrix.os }}
name: ${{ matrix.smalltalk }} on ${{ matrix.os }}
steps:
- uses: libsdl-org/setup-sdl@main
id: sdl
with:
version: 3-latest
- uses: actions/checkout@v4
- uses: hpi-swa/setup-smalltalkCI@v1
with:
smalltalk-image: ${{ matrix.smalltalk }}
- run: smalltalkci -s ${{ matrix.smalltalk }} .ci.ston
if: ${{ runner.os == 'Linux' || runner.os == 'macOS' }}
env:
LD_LIBRARY_PATH: ${{ steps.sdl.outputs.prefix }}/lib
shell: bash
- run: smalltalkci -s ${{ matrix.smalltalk }} .ci.ston
if: ${{ runner.os == 'Windows' }}
env:
PATH: ${{ steps.sdl.outputs.prefix }}/bin
shell: bash