diff --git a/.github/workflows/Pharo11CI.yml b/.github/workflows/Pharo11CI.yml index b9d7c4bd..84a32d11 100644 --- a/.github/workflows/Pharo11CI.yml +++ b/.github/workflows/Pharo11CI.yml @@ -17,6 +17,8 @@ jobs: smalltalk: [ Pharo64-11 ] runs-on: ${{ matrix.os }} name: ${{ matrix.smalltalk }} on ${{ matrix.os }} + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: - uses: actions/checkout@v3 - uses: hpi-swa/setup-smalltalkCI@v1 @@ -26,5 +28,3 @@ jobs: run: smalltalkci -s ${{ matrix.smalltalk }} ${{ matrix.ston }} shell: bash timeout-minutes: 10 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/Pharo12CI.yml b/.github/workflows/Pharo12CI.yml index beaa3999..3e4427e2 100644 --- a/.github/workflows/Pharo12CI.yml +++ b/.github/workflows/Pharo12CI.yml @@ -17,6 +17,8 @@ jobs: smalltalk: [ Pharo64-12 ] runs-on: ${{ matrix.os }} name: ${{ matrix.smalltalk }} on ${{ matrix.os }} + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: - uses: actions/checkout@v3 - uses: hpi-swa/setup-smalltalkCI@v1 @@ -26,5 +28,3 @@ jobs: run: smalltalkci -s ${{ matrix.smalltalk }} ${{ matrix.ston }} shell: bash timeout-minutes: 10 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.smalltalk.ston b/.smalltalk.ston index 6c545f43..4855371b 100644 --- a/.smalltalk.ston +++ b/.smalltalk.ston @@ -3,7 +3,11 @@ SmalltalkCISpec { SCIMetacelloLoadSpec { #baseline : 'Pyramid', #directory : 'src', - #platforms : [ #pharo ] + #platforms : [ #pharo ], + #passwordEnvVar : 'GITHUB_TOKEN' } - ] + ], + #testing: { + #defaultTimeout : 30 + } }