Skip to content

Commit

Permalink
Merge pull request #184 from OpenSmock/dev-pharo13CI
Browse files Browse the repository at this point in the history
add pharo13 ci script + remove cron from pharo11 ci script
  • Loading branch information
labordep authored Jun 21, 2024
2 parents 312b36e + 97e4641 commit 5187f7e
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/Pharo11CI.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:
- 'master'
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: 15
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[![License](https://img.shields.io/github/license/openSmock/Pyramid.svg)](./LICENSE)
[![Pharo 11 CI](https://github.com/OpenSmock/Pyramid/actions/workflows/Pharo11CI.yml/badge.svg)](https://github.com/OpenSmock/Pyramid/actions/workflows/Pharo11CI.yml)
[![Pharo 12 CI](https://github.com/OpenSmock/Pyramid/actions/workflows/Pharo12CI.yml/badge.svg)](https://github.com/OpenSmock/Pyramid/actions/workflows/Pharo12CI.yml)
[![Pharo 13 CI](https://github.com/OpenSmock/Pyramid/actions/workflows/Pharo13CI.yml/badge.svg)](https://github.com/OpenSmock/Pyramid/actions/workflows/Pharo13CI.yml)

# Pyramid

Expand Down

0 comments on commit 5187f7e

Please sign in to comment.