Skip to content

Commit 8b46df8

Browse files
authored
Merge pull request #6 from OpenSmock/ciAndTonel1
update ci for windows only, add ci for pharo 13 and force to tonel 1
2 parents 6f87c81 + e2a1fc1 commit 8b46df8

File tree

4 files changed

+36
-5
lines changed

4 files changed

+36
-5
lines changed

.github/workflows/Pharo12CI.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,12 @@ on:
99
- 'main'
1010
pull_request:
1111
types: [assigned, opened, synchronize, reopened]
12-
schedule:
13-
- cron: '0 12 * * 0'
1412

1513
jobs:
1614
build:
1715
strategy:
1816
matrix:
19-
os: [ ubuntu-latest, macos-latest, windows-latest ]
17+
os: [ windows-latest ]
2018
smalltalk: [ Pharo64-12 ]
2119
runs-on: ${{ matrix.os }}
2220
name: ${{ matrix.smalltalk }} on ${{ matrix.os }}

.github/workflows/Pharo13CI.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: 'Pharo 13 CI'
2+
3+
env:
4+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5+
6+
on:
7+
push:
8+
branches:
9+
- 'main'
10+
pull_request:
11+
types: [assigned, opened, synchronize, reopened]
12+
13+
jobs:
14+
build:
15+
strategy:
16+
matrix:
17+
os: [ windows-latest ]
18+
smalltalk: [ Pharo64-13 ]
19+
runs-on: ${{ matrix.os }}
20+
name: ${{ matrix.smalltalk }} on ${{ matrix.os }}
21+
steps:
22+
- uses: actions/checkout@v3
23+
with:
24+
fetch-depth: 0
25+
- uses: hpi-swa/setup-smalltalkCI@v1
26+
with:
27+
smalltalk-image: ${{ matrix.smalltalk }}
28+
- name: Load in New Image and Run Tests
29+
run: smalltalkci -s ${{ matrix.smalltalk }} ${{ matrix.ston }}
30+
shell: bash
31+
timeout-minutes: 30

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
[![Pharo 11 CI](https://github.com/OpenSmock/PharoZeroMQ/actions/workflows/Pharo11CI.yml/badge.svg)](https://github.com/OpenSmock/PharoZeroMQ/actions/workflows/Pharo11CI.yml)
44
[![Pharo 12 CI](https://github.com/OpenSmock/PharoZeroMQ/actions/workflows/Pharo12CI.yml/badge.svg)](https://github.com/OpenSmock/PharoZeroMQ/actions/workflows/Pharo12CI.yml)
5+
[![Pharo 13 CI](https://github.com/OpenSmock/PharoZeroMQ/actions/workflows/Pharo13CI.yml/badge.svg)](https://github.com/OpenSmock/PharoZeroMQ/actions/workflows/Pharo13CI.yml)
56

67
# PharoZeroMQ
78

src/.properties

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
{
2-
#format : #tonel
3-
}
2+
#format : #tonel,
3+
#version: #'1.0'
4+
}

0 commit comments

Comments
 (0)