From bb6aefcdbda116aa70c290efb25031a66721ef5b Mon Sep 17 00:00:00 2001 From: JanBliznicenko Date: Tue, 19 Jul 2022 14:19:54 +0200 Subject: [PATCH] Use Pharo10 for CI --- .github/workflows/nightly.yml | 72 ++--------------------------------- .github/workflows/release.yml | 33 +--------------- 2 files changed, 6 insertions(+), 99 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 88ac717..c86f282 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -20,71 +20,7 @@ env: RUN_ID: ${{ github.run_id }} jobs: - - test-linux: - runs-on: ubuntu-latest - env: - PLATFORM: linux - name: 'Test Linux' - steps: - - name: Checkout repository - uses: actions/checkout@v2.3.4 - - name: Load SmalltalkCI environment - uses: hpi-swa/setup-smalltalkCI@1.2.1 - id: smalltalkci - with: - smalltalk-version: Pharo64-9.0 - - name: Prepare image and test - run: smalltalkci -s ${{ steps.smalltalkci.outputs.smalltalk-version }} - shell: bash - timeout-minutes: 10 - - test-win: - runs-on: windows-latest - env: - PLATFORM: win - name: 'Test Windows' - steps: - - name: Checkout repository - uses: actions/checkout@v2.3.4 - - name: Load SmalltalkCI environment - uses: hpi-swa/setup-smalltalkCI@1.2.1 - id: smalltalkci - with: - smalltalk-version: Pharo64-9.0 - - name: Prepare image and test - run: smalltalkci -s ${{ steps.smalltalkci.outputs.smalltalk-version }} - shell: bash - timeout-minutes: 15 - - create-dependent-matrix: - runs-on: ubuntu-latest - name: 'Find dependent repositories' - if: ${{ github.event_name == 'push' || contains(github.event.inputs.build-dependent || false, 'true') }} - outputs: - matrix: ${{ steps.set-matrix.outputs.matrix }} - steps: - - name: Checkout repository - uses: actions/checkout@v2.3.4 - - name: Check list of repositories exists - id: check-file - run: test -f ./.github/dependent-repositories.txt || exit 1 - - name: Create dependent build matrix - id: set-matrix - run: echo "::set-output name=matrix::`cat ./.github/dependent-repositories.txt | tr -d " \t\n\r"`" - - build-dependent: - needs: [test-linux, test-win, create-dependent-matrix] - runs-on: ubuntu-latest - name: 'Build dependent' - if: ${{ contains(needs.create-dependent-matrix.outputs.matrix, '/') }} - strategy: - matrix: ${{fromJson(needs.create-dependent-matrix.outputs.matrix)}} - steps: - - name: Start ${{ matrix.repository }} build - uses: benc-uk/workflow-dispatch@v1.1.0 - with: - workflow: Nightly - repo: ${{ matrix.repository }} - token: ${{ secrets.WORKFLOW_ACCESS_TOKEN }} - inputs: '{ "build-dependent": "${{ matrix.build-dependent }}" }' + OP: + uses: OpenPonk/openponk/.github/workflows/nightly.yml@master + secrets: + WORKFLOW_ACCESS_TOKEN: ${{ secrets.WORKFLOW_ACCESS_TOKEN }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6812f4c..b4d0d33 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,34 +12,5 @@ env: RUN_ID: ${{ github.run_id }} jobs: - linux: - runs-on: ubuntu-latest - env: - PLATFORM: ${{ github.job }} - name: 'Build Linux and upload zip' - steps: - - uses: actions/checkout@v2.3.4 - - uses: hpi-swa/setup-smalltalkCI@1.2.1 - id: smalltalkci - with: - smalltalk-version: Pharo64-9.0 - - name: Prepare image and test - run: smalltalkci -s ${{ steps.smalltalkci.outputs.smalltalk-version }} - shell: bash - timeout-minutes: 10 - - win: - runs-on: windows-latest - env: - PLATFORM: ${{ github.job }} - name: 'Build Windows and upload zip' - steps: - - uses: actions/checkout@v2.3.4 - - uses: hpi-swa/setup-smalltalkCI@1.2.1 - id: smalltalkci - with: - smalltalk-version: Pharo64-9.0 - - name: Prepare image and test - run: smalltalkci -s ${{ steps.smalltalkci.outputs.smalltalk-version }} - shell: bash - timeout-minutes: 15 \ No newline at end of file + OP: + uses: OpenPonk/openponk/.github/workflows/release.yml@master \ No newline at end of file