-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (41 loc) · 1.22 KB
/
Copy pathtest-release.yml
File metadata and controls
45 lines (41 loc) · 1.22 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
39
40
41
42
43
44
45
name: Test-Release
on:
workflow_call:
env:
REPOSITORY_NAME: '${{ github.event.repository.name }}'
PROJECT_NAME: 'openponk-${{ github.event.repository.name }}'
VERSION: ${{ github.event.release.tag_name }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RUN_ID: ${{ github.run_id }}
PHARO_VERSION: 13
jobs:
test-linux:
runs-on: ubuntu-latest
env:
PLATFORM: ${{ github.job }}
name: 'Test Linux'
steps:
- uses: actions/checkout@v4.2.2
- uses: hpi-swa/setup-smalltalkCI@1.3.4
id: smalltalkci
with:
smalltalk-image: Pharo64-${{ env.PHARO_VERSION }}
- name: Prepare image and test
run: smalltalkci -s ${{ steps.smalltalkci.outputs.smalltalk-image }}
shell: bash
timeout-minutes: 12
test-win:
runs-on: windows-latest
env:
PLATFORM: ${{ github.job }}
name: 'Test Windows'
steps:
- uses: actions/checkout@v4.2.2
- uses: hpi-swa/setup-smalltalkCI@1.3.4
id: smalltalkci
with:
smalltalk-image: Pharo64-${{ env.PHARO_VERSION }}
- name: Prepare image and test
run: smalltalkci -s ${{ steps.smalltalkci.outputs.smalltalk-image }}
shell: bash
timeout-minutes: 20