add contextual closure to EpiLog-HiDeHo #309
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '**.md' | |
- 'docs/**' | |
- 'JavaScript/**' | |
- 'Tutorials/**' | |
- 'scripts/**' | |
pull_request: | |
types: [assigned, opened, synchronize, reopened] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
include: # windows platform is excluded because ProcessWrapper provides only 32bit DLL | |
- os: ubuntu-latest | |
smalltalk: Pharo64-12 | |
- os: macos-latest | |
smalltalk: Pharo64-12 | |
#- os: windows-latest | |
# smalltalk: Pharo64-11 | |
runs-on: ${{ matrix.os }} | |
name: ${{ matrix.smalltalk }} on ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'oracle' | |
java-version: '17' | |
- uses: hpi-swa/setup-smalltalkCI@v1 | |
id: smalltalkci | |
with: | |
smalltalk-image: ${{ matrix.smalltalk }} | |
- run: smalltalkci -s ${{ steps.smalltalkci.outputs.smalltalk-image }} | |
shell: bash | |
timeout-minutes: 30 |