Skip to content

Commit

Permalink
Add Pharo 13 CI script. Update Pharo 12 CI script.
Browse files Browse the repository at this point in the history
  • Loading branch information
labordep authored Jun 14, 2024
1 parent 930a889 commit dc850d9
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/Pharo12CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ on:
- 'main'
pull_request:
types: [assigned, opened, synchronize, reopened]
schedule:
- cron: '0 12 * * 0'

jobs:
build:
Expand Down
31 changes: 31 additions & 0 deletions .github/workflows/Pharo13CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: 'Pharo 13 CI'

env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

on:
push:
branches:
- 'main'
pull_request:
types: [assigned, opened, synchronize, reopened]
schedule:
- cron: '0 12 * * 0'

jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
smalltalk: [ Pharo64-13 ]
runs-on: ${{ matrix.os }}
name: ${{ matrix.smalltalk }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: hpi-swa/setup-smalltalkCI@v1
with:
smalltalk-image: ${{ matrix.smalltalk }}
- name: Load in New Image and Run Tests
run: smalltalkci -s ${{ matrix.smalltalk }} ${{ matrix.ston }}
shell: bash
timeout-minutes: 60

0 comments on commit dc850d9

Please sign in to comment.