Update README.txt #780
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: smalltalkCI Self Test | |
on: | |
push: | |
paths-ignore: | |
- '**.md' | |
- 'docs/**' | |
- '.appveyor.yml' | |
- '.travis.yml' | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
- 'docs/**' | |
- '.appveyor.yml' | |
- '.travis.yml' | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, macos-latest, windows-latest ] | |
smalltalk: | |
- Squeak64-trunk | |
- Squeak64-5.3 | |
- Squeak64-5.2 | |
- Squeak64-5.1 | |
- Squeak32-trunk | |
- Squeak32-4.5 | |
- Pharo64-stable | |
- Pharo64-alpha | |
- Pharo64-10 | |
- Pharo64-9.0 | |
- Pharo64-8.0 | |
- Pharo64-7.0 | |
- Pharo64-6.1 | |
- Pharo64-6.0 | |
- Pharo32-stable | |
- Pharo32-alpha | |
- Pharo32-3.0 | |
- Moose64-9.0 | |
- Moose64-8.0 | |
- Moose64-7.0 | |
exclude: # exclude 32bit builds on macOS | |
- os: macos-latest | |
smalltalk: Squeak32-trunk | |
- os: macos-latest | |
smalltalk: Squeak32-4.5 | |
- os: macos-latest | |
smalltalk: Pharo32-stable | |
- os: macos-latest | |
smalltalk: Pharo32-alpha | |
- os: macos-latest | |
smalltalk: Pharo32-3.0 | |
- os: windows-latest | |
smalltalk: Pharo64-10 | |
- os: windows-latest | |
smalltalk: Pharo64-6.0 | |
include: | |
- os: ubuntu-18.04 | |
smalltalk: GemStone64-3.5.0 | |
runs-on: ${{ matrix.os }} | |
name: ${{ matrix.smalltalk }} on ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup smalltalkCI | |
uses: hpi-swa/setup-smalltalkCI@v1 | |
with: | |
smalltalk-image: ${{ matrix.smalltalk }} | |
- name: Run smalltalkCI self test | |
run: | | |
tests/all_tests.sh | |
bin/smalltalkci -s ${{ matrix.smalltalk }} --self-test | |
shell: bash | |
if: contains(matrix.smalltalk, 'trunk') == false && contains(matrix.smalltalk, 'alpha') == false | |
timeout-minutes: 15 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run smalltalkCI self test and ignore failures | |
run: bin/smalltalkci -s ${{ matrix.smalltalk }} --self-test || true | |
shell: bash | |
if: contains(matrix.smalltalk, 'trunk') || contains(matrix.smalltalk, 'alpha') | |
timeout-minutes: 15 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |