-
Notifications
You must be signed in to change notification settings - Fork 25
38 lines (36 loc) · 1.21 KB
/
main.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
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
paths-ignore:
- '**.md'
pull_request:
branches: [ master ]
paths-ignore:
- '**.md'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
strategy:
matrix:
smalltalk:
- Pharo64-10
- Pharo64-9.0
# Waiting a 32-bit version of Pharo 90 before re-enabling this version
# - Pharo32-9.0
smalltalk_config: [ .smalltalk.ston, .stress.smalltalk.ston ]
os: [ ubuntu-latest, macos-latest ]
runs-on: ${{ matrix.os }}
name: ${{ matrix.smalltalk }}, ${{ matrix.smalltalk_config }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: hpi-swa/setup-smalltalkCI@v1
with:
smalltalk-image: ${{ matrix.smalltalk }}
- run: smalltalkci -s ${{ matrix.smalltalk }} ${{ matrix.smalltalk_config }}
shell: bash
timeout-minutes: 30