Skip to content

Commit aed7ed3

Browse files
author
Patrik
committed
Adding SmalltalkCI job based on BitmapCharacterMap job
1 parent 8e6dcf4 commit aed7ed3

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

.github/workflows/ci.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: smalltalkCI
2+
3+
on:
4+
push:
5+
pull_request:
6+
branches:
7+
gemstone
8+
schedule:
9+
- cron: "15 2 9 * *" #run job on the 9th day of every month on the 15th minute of the 2nd hour
10+
11+
jobs:
12+
build:
13+
strategy:
14+
fail-fast: false
15+
matrix:
16+
os: [ ubuntu-latest ]
17+
smalltalk: [ GemStone64-3.7.2, GemStone64-3.7.4.3 ]
18+
runs-on: ${{ matrix.os }}
19+
name: ${{ matrix.smalltalk }}
20+
steps:
21+
- uses: actions/checkout@v2
22+
- uses: hpi-swa/setup-smalltalkCI@v1
23+
with:
24+
smalltalk-image: ${{ matrix.smalltalk }}
25+
- name: Run tests
26+
run: smalltalkci -s ${{ matrix.smalltalk }}
27+
shell: bash
28+
timeout-minutes: 20
29+
slack-workflow-status:
30+
if: always()
31+
name: Post Workflow Status To Slack
32+
needs:
33+
- build
34+
runs-on: ubuntu-latest
35+
steps:
36+
- name: Slack Workflow Notification
37+
uses: Gamesight/slack-workflow-status@master
38+
with:
39+
repo_token: ${{secrets.GITHUB_TOKEN}}
40+
slack_webhook_url: ${{secrets.SLACK_DALEHENRICH}}
41+
name: 'action run'

0 commit comments

Comments
 (0)