-
Notifications
You must be signed in to change notification settings - Fork 13
34 lines (34 loc) · 905 Bytes
/
base.yaml
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
name: Build Fuel
on:
workflow_call:
inputs:
build_targets:
required: true
type: string
configs:
required: true
type: string
branch:
required: false
default: master
type: string
jobs:
build:
name: "Build ${{ matrix.smalltalk }} ${{ matrix.config }}"
if: ${{!contains(github.event.commits[0].message, '[docs]')}}
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
smalltalk: ${{ fromJSON(inputs.build_targets) }}
config: ${{ fromJSON(inputs.configs) }}
steps:
- uses: actions/checkout@v3
with:
ref: ${{ inputs.branch }}
- uses: hpi-swa/setup-smalltalkCI@v1
with:
smalltalk-image: ${{ matrix.smalltalk }}
- run: smalltalkci -s ${{ matrix.smalltalk }} ${{ matrix.config }}
shell: bash
timeout-minutes: 5