update the ci job ... 3.5.8 no longer runs on macos-latest ... macos-… #44
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: smalltalkCI | |
on: | |
push: | |
pull_request: | |
branches: | |
master | |
schedule: | |
- cron: "15 2 8 * *" #run job on the 8th day of every month on the 15th minute of the 2nd hour | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-20.04 ] | |
smalltalk: [ GemStone64-3.7.0, GemStone64-3.6.8, GemStone64-3.5.8 ] | |
include: | |
- smalltalk: GemStone64-3.6.8 | |
os: macos-latest | |
- smalltalk: GemStone64-3.5.8 | |
os: macos-11 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: dalehenrich/setup-smalltalkCI@solo | |
with: | |
smalltalk-image: ${{ matrix.smalltalk }} | |
- name: Run tests | |
run: smalltalkci -s ${{ matrix.smalltalk }} | |
shell: bash | |
timeout-minutes: 20 | |
slack-workflow-status: | |
if: always() | |
name: Post Workflow Status To Slack | |
needs: | |
- build | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Slack Workflow Notification | |
uses: Gamesight/slack-workflow-status@master | |
with: | |
repo_token: ${{secrets.GITHUB_TOKEN}} | |
slack_webhook_url: ${{secrets.SLACK_DALEHENRICH}} | |
name: 'action run' |