Skip to content

Commit

Permalink
Update support for GS64 3.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gcotelli committed Sep 13, 2023
1 parent df1f296 commit e113214
Show file tree
Hide file tree
Showing 10 changed files with 44 additions and 20 deletions.
18 changes: 14 additions & 4 deletions .github/workflows/loading-groups.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,25 @@
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 ]
load-spec: [ deployment, dependent-sunit-extensions, tests, tools, development ]
smalltalk:
- Pharo64-9.0
- Pharo64-10
- Pharo64-11
load-spec:
- dependent-sunit-extensions
- deployment
- development
- tests
- tools
name: ${{ matrix.smalltalk }} + ${{ matrix.load-spec }}
steps:
- uses: actions/checkout@v3
Expand Down
12 changes: 8 additions & 4 deletions .github/workflows/loading-gs64-components.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,23 @@
name: 'GS64 Components Loading'

on: [push,pull_request,workflow_dispatch]
on:
- push
- pull_request
- workflow_dispatch

jobs:
component-loading:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
load-spec: [ Deployment, Dependent-SUnit-Extensions ]
load-spec:
- Dependent-SUnit-Extensions
- Deployment
name: GS64 + ${{ matrix.load-spec }}
steps:
- uses: actions/checkout@v3
- name: Load component in image
uses: ba-st-actions/gs64-ci@v1
uses: ba-st-actions/gs64-ci@v2
with:
project_name: 'Hyperspace'
load_spec: 'Hyperspace-${{ matrix.load-spec }}'
5 changes: 4 additions & 1 deletion .github/workflows/markdown-lint.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: Markdown Lint
on: [push,pull_request,workflow_dispatch]
on:
- push
- pull_request
- workflow_dispatch
jobs:
remark-lint:
name: runner / markdownlint
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/notify.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
name: Release Notifications

on: workflow_dispatch

jobs:
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/unit-tests-gs64.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: 'GS64 Unit Tests'

on: [push,pull_request,workflow_dispatch]
on:
- push
- pull_request
- workflow_dispatch

jobs:
unit-tests:
Expand All @@ -9,7 +11,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Load Image and Run Tests
uses: ba-st-actions/gs64-ci@v1
uses: ba-st-actions/gs64-ci@v2
with:
project_name: 'Hyperspace'
run_tests: 'true'
12 changes: 9 additions & 3 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
name: Unit Tests
name: Pharo Unit Tests

on: [push,pull_request,workflow_dispatch]
on:
- push
- pull_request
- workflow_dispatch

jobs:
unit-tests:
runs-on: ubuntu-latest
strategy:
matrix:
smalltalk: [ Pharo64-11, Pharo64-10, Pharo64-9.0 ]
smalltalk:
- Pharo64-9.0
- Pharo64-10
- Pharo64-11
name: ${{ matrix.smalltalk }}
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Building blocks for Internet technologies on top of [Zinc HTTP Components](https
[![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.6.6](https://img.shields.io/badge/GS64-3.6.6-informational)](https://gemtalksystems.com/products/gs64/)
[![GS64 3.7.0](https://img.shields.io/badge/GS64-3.7.0-informational)](https://gemtalksystems.com/products/gs64/)

## Quick links

Expand Down
2 changes: 1 addition & 1 deletion rowan/specs/Hyperspace-CI.ston
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
RwLoadSpecificationV2 {
#specName: 'Hyperspace-CI',
#projectName : 'Hyperspace',
#diskUrl : '/opt/gemstone/projects/Hyperspace',
#diskUrl : 'Hyperspace',
#projectSpecFile : 'rowan/project.ston',
#componentNames : [
'Tests'
Expand Down
2 changes: 1 addition & 1 deletion rowan/specs/Hyperspace-Dependent-SUnit-Extensions.ston
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
RwLoadSpecificationV2 {
#specName: 'Hyperspace-CI',
#projectName : 'Hyperspace',
#diskUrl : '/opt/gemstone/projects/Hyperspace',
#diskUrl : 'Hyperspace',
#projectSpecFile : 'rowan/project.ston',
#componentNames : [
'Dependent-SUnit-Extensions'
Expand Down
2 changes: 1 addition & 1 deletion rowan/specs/Hyperspace-Deployment.ston
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
RwLoadSpecificationV2 {
#specName: 'Hyperspace-CI',
#projectName : 'Hyperspace',
#diskUrl : '/opt/gemstone/projects/Hyperspace',
#diskUrl : 'Hyperspace',
#projectSpecFile : 'rowan/project.ston',
#componentNames : [
'Deployment'
Expand Down

0 comments on commit e113214

Please sign in to comment.