fixed Windows OPVersion setup #37
This file contains hidden or 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: CI-Scripts | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - 'master' | |
| schedule: | |
| - cron: "42 23 31 12 *" | |
| jobs: | |
| 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: [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 }}" }' |