Skip to content

chore: fix parallelism in library compilation #347

chore: fix parallelism in library compilation

chore: fix parallelism in library compilation #347

Workflow file for this run

on:
schedule:
# Runs at 04:00 am
- cron: '0 4 * * *'
workflow_dispatch:
# delete this before merging the PR
pull_request:
# Generates a list of libraries that cannot be
# compiled (printed to the action stdout)
name: Verify libraries compilation
jobs:
verify:
runs-on: 'ubuntu-24.04'
strategy:
matrix:
# We will parallelize by alphabet letter
letter: ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']
fail-fast: false

Check failure on line 18 in .github/workflows/verify.yaml

View workflow run for this annotation

GitHub Actions / Verify libraries compilation

Invalid workflow file

The workflow is not valid. .github/workflows/verify.yaml (Line: 18, Col: 20): Unexpected value 'false' .github/workflows/verify.yaml (Line: 35, Col: 5): Required property is missing: runs-on
outputs:
failed_libraries:
steps:
- uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 8
- uses: actions/checkout@v2
with:
path: google-api-java-client-services
- working-directory: google-api-java-client-services
run: |
set -ex
bash .github/workflows/verify.sh "${{matrix.letter}}"
print_results:
needs: [verify]
steps:
- run: |
set -ex
echo '${{ toJSON(needs.verify.failed_libraries) }}'