Update v9 with latest changes to prepare for v9.0.0 release #334
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: Baseline groups | |
on: | |
- push | |
- pull_request | |
- workflow_dispatch | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
smalltalk: | |
- Pharo64-9.0 | |
- Pharo64-10 | |
- Pharo64-11 | |
rdbms: | |
- SQLite3 | |
load-spec: | |
- deployment | |
- tests | |
- tools | |
- development | |
name: ${{ matrix.smalltalk }} + ${{ matrix.rdbms }} + ${{ matrix.load-spec }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: hpi-swa/setup-smalltalkCI@v1 | |
with: | |
smalltalk-image: ${{ matrix.smalltalk }} | |
- name: Install SQLite3 | |
run: ./scripts/install-SQLite3.sh | |
env: | |
RDBMS: ${{ matrix.rdbms }} | |
- name: Load group in image | |
run: smalltalkci -s ${{ matrix.smalltalk }} .smalltalkci/.loading.${{ matrix.load-spec }}.ston | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
RDBMS: ${{ matrix.rdbms }} | |
timeout-minutes: 15 | |