Skip to content

Commit

Permalink
Moved CI scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
JanBliznicenko committed Oct 15, 2023
1 parent 13681ba commit 088264c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 107 deletions.
79 changes: 5 additions & 74 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,86 +10,17 @@ on:
push:
branches:
- 'master'
workflow_call:
secrets:
WORKFLOW_ACCESS_TOKEN:
required: true

env:
REPOSITORY_NAME: '${{ github.event.repository.name }}'
PROJECT_NAME: 'openponk-${{ github.event.repository.name }}'
VERSION: 'nightly'
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
cache-name: zip-cache
RUN_ID: ${{ github.run_id }}
PHARO_VERSION: 11

jobs:

test-linux:
runs-on: ubuntu-latest
env:
PLATFORM: linux
name: 'Test Linux'
steps:
- name: Checkout repository
uses: actions/[email protected]
- name: Load SmalltalkCI environment
uses: hpi-swa/[email protected]
id: smalltalkci
with:
smalltalk-image: Pharo64-${{ env.PHARO_VERSION }}
- name: Prepare image and test
run: smalltalkci -s ${{ steps.smalltalkci.outputs.smalltalk-image }}
shell: bash
timeout-minutes: 12

test-win:
runs-on: windows-latest
env:
PLATFORM: win
name: 'Test Windows'
steps:
- name: Checkout repository
uses: actions/[email protected]
- name: Load SmalltalkCI environment
uses: hpi-swa/[email protected]
id: smalltalkci
with:
smalltalk-image: Pharo64-${{ env.PHARO_VERSION }}
- name: Prepare image and test
run: smalltalkci -s ${{ steps.smalltalkci.outputs.smalltalk-image }}
shell: bash
timeout-minutes: 20

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/[email protected]
- 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/[email protected]
with:
workflow: Nightly
repo: ${{ matrix.repository }}
ref: ${{ matrix.branch }}
token: ${{ secrets.WORKFLOW_ACCESS_TOKEN }}
inputs: '{ "build-dependent": "${{ matrix.build-dependent }}" }'
OP:
uses: OpenPonk/ci-scripts/.github/workflows/test-nightly.yml@master
secrets:
WORKFLOW_ACCESS_TOKEN: ${{ secrets.WORKFLOW_ACCESS_TOKEN }}
36 changes: 3 additions & 33 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,44 +3,14 @@ name: Release
on:
release:
types: [published]
workflow_call:

env:
REPOSITORY_NAME: '${{ github.event.repository.name }}'
PROJECT_NAME: 'openponk-${{ github.event.repository.name }}'
VERSION: ${{ github.event.release.tag_name }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RUN_ID: ${{ github.run_id }}
PHARO_VERSION: 11

jobs:
test-linux:
runs-on: ubuntu-latest
env:
PLATFORM: ${{ github.job }}
name: 'Test Linux'
steps:
- uses: actions/[email protected]
- uses: hpi-swa/[email protected]
id: smalltalkci
with:
smalltalk-image: Pharo64-${{ env.PHARO_VERSION }}
- name: Prepare image and test
run: smalltalkci -s ${{ steps.smalltalkci.outputs.smalltalk-image }}
shell: bash
timeout-minutes: 12

test-win:
runs-on: windows-latest
env:
PLATFORM: ${{ github.job }}
name: 'Test Windows'
steps:
- uses: actions/[email protected]
- uses: hpi-swa/[email protected]
id: smalltalkci
with:
smalltalk-image: Pharo64-${{ env.PHARO_VERSION }}
- name: Prepare image and test
run: smalltalkci -s ${{ steps.smalltalkci.outputs.smalltalk-image }}
shell: bash
timeout-minutes: 20
OP:
uses: OpenPonk/ci-scripts/.github/workflows/test-release.yml@master

0 comments on commit 088264c

Please sign in to comment.