Skip to content

Updated OS/GemStone version in GitHub Workflows. #22

Updated OS/GemStone version in GitHub Workflows.

Updated OS/GemStone version in GitHub Workflows. #22

Workflow file for this run

name: smalltalkCI
on:
push:
pull_request:
branches:
master
schedule:
- cron: "15 2 15 * *" #run job on the 4th day of every month on the 15th minute of the 2nd hour
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-20.04, ubuntu-22.04 ]
smalltalk: [ 3.6.6, 3.6.8, 3.7.0, 3.7.1 ]
include:
- smalltalk: 3.7.1
os: macos-14
#- smalltalk: 3.7.0
# os: macos-13
#- smalltalk: 3.7.0
# os: macos-12
- smalltalk: 3.6.8
os: macos-13
- smalltalk: 3.6.8
os: macos-12
- smalltalk: 3.6.6
os: macos-13
- smalltalk: 3.6.6
os: macos-12
continue-on-error: ${{ matrix.experimental }}
name: ${{ matrix.smalltalk }}
steps:
- uses: actions/checkout@v2
- uses: hpi-swa/setup-smalltalkCI@v1
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-22.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'