Skip to content

Commit

Permalink
Merge pull request #33 from ba-st/gs64-3.7.1
Browse files Browse the repository at this point in the history
Add support for GS64 3.7.1
  • Loading branch information
gcotelli authored Apr 11, 2024
2 parents b4dd84d + 6f9c7a6 commit 41a3c15
Show file tree
Hide file tree
Showing 13 changed files with 76 additions and 32 deletions.
20 changes: 14 additions & 6 deletions .github/workflows/loading-groups.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,26 @@
name: Baseline Groups

on: [push,pull_request,workflow_dispatch]

on:
- push
- pull_request
- workflow_dispatch
jobs:
group-loading:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
smalltalk: [ Pharo64-11, Pharo64-10, Pharo64-9.0, Pharo64-8.0 ]
load-spec: [ deployment, tests, development ]
smalltalk:
- Pharo64-8.0
- Pharo64-9.0
- Pharo64-10
- Pharo64-11
load-spec:
- development
- deployment
- tests
name: ${{ matrix.smalltalk }} + ${{ matrix.load-spec }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: hpi-swa/setup-smalltalkCI@v1
with:
smalltalk-image: ${{ matrix.smalltalk }}
Expand Down
21 changes: 18 additions & 3 deletions .github/workflows/loading-gs64-components.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,33 @@ on:
- workflow_dispatch

jobs:
component-loading:
component-loading-3_7_0:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
load-spec:
- Deployment
name: GS64 + ${{ matrix.load-spec }}
name: GS64 v3.7.0 + ${{ matrix.load-spec }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Load component in image
uses: ba-st-actions/gs64-ci@v2
with:
project_name: 'Aconcagua'
load_spec: 'Aconcagua-${{ matrix.load-spec }}'
component-loading-3_7_1:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
load-spec:
- Deployment
name: GS64 v3.7.1 + ${{ matrix.load-spec }}
steps:
- uses: actions/checkout@v4
- name: Load component in image
uses: ba-st-actions/gs64-ci@v3
with:
project_name: 'Aconcagua'
load_spec: 'Aconcagua-${{ matrix.load-spec }}'
7 changes: 5 additions & 2 deletions .github/workflows/markdown-lint.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
name: Markdown Lint
on: [push,pull_request,workflow_dispatch]
on:
- push
- pull_request
- workflow_dispatch
jobs:
remark-lint:
name: runner / markdownlint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: markdownlint
uses: reviewdog/action-markdownlint@v0
with:
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/notify.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
name: Release Notifications

on:
release:
types: [published]

on: workflow_dispatch
jobs:
notify:
runs-on: ubuntu-latest
Expand Down
16 changes: 13 additions & 3 deletions .github/workflows/unit-tests-gs64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,23 @@ on:
- workflow_dispatch

jobs:
unit-tests:
unit-tests-3_7_0:
runs-on: ubuntu-latest
name: GS64 Unit Tests
name: GS64 3.7.0 Unit Tests
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Load Image and Run Tests
uses: ba-st-actions/gs64-ci@v2
with:
project_name: 'Aconcagua'
run_tests: 'true'
unit-tests-3_7_1:
runs-on: ubuntu-latest
name: GS64 3.7.1 Unit Tests
steps:
- uses: actions/checkout@v4
- name: Load Image and Run Tests
uses: ba-st-actions/gs64-ci@v3
with:
project_name: 'Aconcagua'
run_tests: 'true'
17 changes: 11 additions & 6 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
name: Unit Tests

on: [push,pull_request,workflow_dispatch]

on:
- push
- pull_request
- workflow_dispatch
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
smalltalk: [ Pharo64-11, Pharo64-10, Pharo64-9.0, Pharo64-8.0 ]
smalltalk:
- Pharo64-8.0
- Pharo64-9.0
- Pharo64-10
- Pharo64-11
name: ${{ matrix.smalltalk }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Smalltalk CI
uses: hpi-swa/setup-smalltalkCI@v1
with:
Expand All @@ -21,7 +26,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
timeout-minutes: 15
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
name: Unit-Tests-${{matrix.smalltalk}}
token: ${{ secrets.CODECOV_TOKEN }}
3 changes: 2 additions & 1 deletion .smalltalkci/loading.deployment.ston
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ SmalltalkCISpec {
#baseline : 'Aconcagua',
#directory : '../source',
#load : [ 'Deployment' ],
#platforms : [ #pharo ]
#platforms : [ #pharo ],
#failOn : [ #Warning ]
}
],
#testing : {
Expand Down
3 changes: 2 additions & 1 deletion .smalltalkci/loading.development.ston
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ SmalltalkCISpec {
#baseline : 'Aconcagua',
#directory : '../source',
#load : [ 'Development' ],
#platforms : [ #pharo ]
#platforms : [ #pharo ],
#failOn : [ #Warning ]
}
],
#testing : {
Expand Down
3 changes: 2 additions & 1 deletion .smalltalkci/loading.tests.ston
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ SmalltalkCISpec {
#baseline : 'Aconcagua',
#directory : '../source',
#load : [ 'Tests' ],
#platforms : [ #pharo ]
#platforms : [ #pharo ],
#failOn : [ #Warning ]
}
],
#testing : {
Expand Down
3 changes: 2 additions & 1 deletion .smalltalkci/unit-tests.ston
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ SmalltalkCISpec {
#baseline : 'Aconcagua',
#directory : '../source',
#load : [ 'CI' ],
#platforms : [ #pharo ]
#platforms : [ #pharo ],
#failOn : [ #Warning ]
}
],
#testing : {
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2018-2022 Hernán Wilkinson, Maximiliano Taborda and the Buenos Aires Smalltalk Contributors
Copyright (c) 2018-2024 Hernán Wilkinson, Maximiliano Taborda and the Buenos Aires Smalltalk Contributors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ encapsulates a number with its unit.
[![Pharo 10](https://img.shields.io/badge/Pharo-10-informational)](https://pharo.org)
[![Pharo 11](https://img.shields.io/badge/Pharo-11-informational)](https://pharo.org)

[![GS64 3.7.0](https://img.shields.io/badge/GS64-3.7.0-informational)](https://gemtalksystems.com/products/gs64/)
[![GS64 3.7.1](https://img.shields.io/badge/GS64-3.7.1-informational)](https://gemtalksystems.com/products/gs64/)

> *Named after [Aconcagua](https://en.wikipedia.org/wiki/Aconcagua), the highest
> mountain in both the southern and western hemispheres. It is located in the
> Andes, in the Mendoza Province, Argentina.*
Expand Down
4 changes: 2 additions & 2 deletions source/.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
#convention : 'Rowan',
#format : #tonel
#convention : 'Rowan',
#format : #tonel
}

0 comments on commit 41a3c15

Please sign in to comment.