Skip to content

add traces to code generators #265

add traces to code generators

add traces to code generators #265

Workflow file for this run

name: CI
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
on:
push:
branches:
- main
paths-ignore:
- '**.md'
- 'docs/**'
- 'JavaScript/**'
- 'Tutorials/**'
- 'scripts/**'
pull_request:
types: [assigned, opened, synchronize, reopened]
jobs:
build:
strategy:
matrix:
include: # windows platform is excluded because ProcessWrapper provides only 32bit DLL
- os: ubuntu-latest
smalltalk: Pharo64-12
- os: macos-latest
smalltalk: Pharo64-12
#- os: windows-latest
# smalltalk: Pharo64-11
runs-on: ${{ matrix.os }}
name: ${{ matrix.smalltalk }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v4
with:
distribution: 'oracle'
java-version: '17'
- uses: hpi-swa/setup-smalltalkCI@v1
id: smalltalkci
with:
smalltalk-image: ${{ matrix.smalltalk }}
- run: smalltalkci -s ${{ steps.smalltalkci.outputs.smalltalk-image }}
shell: bash
timeout-minutes: 30