Skip to content

Commit

Permalink
Merge pull request #69 from ba-st/gs64-3.7.1
Browse files Browse the repository at this point in the history
Update GS to 3.7.1 + Fail when a warning occurs
  • Loading branch information
gcotelli authored Apr 12, 2024
2 parents b41ed82 + f1d4de6 commit d262657
Show file tree
Hide file tree
Showing 10 changed files with 44 additions and 11 deletions.
20 changes: 18 additions & 2 deletions .github/workflows/loading-gs64-components.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,35 @@ on:
- workflow_dispatch

jobs:
component-loading:
component-loading-3_7_0:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
load-spec:
- Dependent-SUnit-Extensions
- Deployment
name: GS64 + ${{ matrix.load-spec }}
name: GS64 v3.7.0 + ${{ matrix.load-spec }}
steps:
- uses: actions/checkout@v4
- name: Load component in image
uses: ba-st-actions/gs64-ci@v2
with:
project_name: 'Hyperspace'
load_spec: 'Hyperspace-${{ matrix.load-spec }}'
component-loading-3_7_1:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
load-spec:
- Dependent-SUnit-Extensions
- 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: 'Hyperspace'
load_spec: 'Hyperspace-${{ matrix.load-spec }}'
14 changes: 12 additions & 2 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@v4
- name: Load Image and Run Tests
uses: ba-st-actions/gs64-ci@v2
with:
project_name: 'Hyperspace'
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: 'Hyperspace'
run_tests: 'true'
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,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.dependent-sunit-extensions.ston
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ SmalltalkCISpec {
#baseline : 'Hyperspace',
#directory : '../source',
#load : [ 'Dependent-SUnit-Extensions' ],
#platforms : [ #pharo ]
#platforms : [ #pharo ],
#failOn : [ #Warning ]
}
],
#testing : {
Expand Down
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 : 'Hyperspace',
#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 : 'Hyperspace',
#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 : 'Hyperspace',
#directory : '../source',
#load : [ 'Tests' ],
#platforms : [ #pharo ]
#platforms : [ #pharo ],
#failOn : [ #Warning ]
}
],
#testing : {
Expand Down
3 changes: 2 additions & 1 deletion .smalltalkci/.loading.tools.ston
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ SmalltalkCISpec {
#baseline : 'Hyperspace',
#directory : '../source',
#load : [ 'Tools' ],
#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 : 'Hyperspace',
#directory : '../source',
#load : [ 'CI' ],
#platforms : [ #pharo ]
#platforms : [ #pharo ],
#failOn : [ #Warning ]
}
],
#testing : {
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Building blocks for Internet technologies on top of [Zinc HTTP Components](https
[![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/)

## Quick links

Expand Down

0 comments on commit d262657

Please sign in to comment.