File tree Expand file tree Collapse file tree 1 file changed +41
-0
lines changed
Expand file tree Collapse file tree 1 file changed +41
-0
lines changed Original file line number Diff line number Diff line change 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'
You can’t perform that action at this time.
0 commit comments