Skip to content

Presenters in Pharo remember their last size and does not use initial extent anymore if its not first time opened #116

Presenters in Pharo remember their last size and does not use initial extent anymore if its not first time opened

Presenters in Pharo remember their last size and does not use initial extent anymore if its not first time opened #116

Workflow file for this run

name: Iceberg-Pharo-Integration
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PHARO_CI_TESTING_ENVIRONMENT: 1
# Allowing this obsolete in the release tests since it is caused by the unload/reload of
# iceberg, and that is something made just
PHARO_CI_ALLOWED_OBSOLETES: IceGitHubAPI
on:
push:
branches: [ Pharo13 ]
paths-ignore:
- 'README.md'
- 'docs/**'
pull_request:
branches: [ Pharo13 ]
paths-ignore:
- 'README.md'
- 'docs/**'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest ]
smalltalk: [ Pharo64-alpha ]
runs-on: ${{ matrix.os }}
name: ${{ matrix.smalltalk }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup smalltalkCI
uses: hpi-swa/setup-smalltalkCI@v1
with:
smalltalk-image: ${{ matrix.smalltalk }}
- name: Load Image and Run Release Tests
run: smalltalkci -s ${{ matrix.smalltalk }} .smalltalk.release.ston
timeout-minutes: 10
- name: Clean Up
run: rm -Rf ${{ env.SMALLTALK_CI_BUILD }}
- name: Load Image and Run Tests
run: smalltalkci -s ${{ matrix.smalltalk }} .smalltalk.all.ston
timeout-minutes: 30