Skip to content

Commit d30b9cc

Browse files
parallelize on variant
1 parent 9a7676c commit d30b9cc

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.github/workflows/verify.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@ set -ex
22
export repo_dir=$(realpath $(dirname "${BASH_SOURCE[0]}")/../../)
33
pushd "${repo_dir}/clients"
44

5+
# Variants are based on the generator version
6+
variant="$1"
7+
58
# find all generated clients' pom.xml
6-
find . -name pom.xml -not -path '*/target/*' > pom_list
9+
find . -wholename "*${variant}/pom.xml" -not -path '*/target/*' > pom_list
710
cat pom_list
811

912
# format result to list of Maven modules

.github/workflows/verify.yaml

+6-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ on:
1010
name: Verify libraries compilation
1111
jobs:
1212
verify:
13-
runs-on: ubuntu-20.04
13+
runs-on: ubuntu-24.04
14+
strategy:
15+
matrix:
16+
variant: [ 1.26.0, 1.27.0, 1.28.0, 1.29.2, 1.30.1, 1.31.0, 2.0.0 ]
1417
steps:
1518
- uses: actions/setup-java@v3
1619
with:
@@ -19,7 +22,8 @@ jobs:
1922
- uses: actions/checkout@v2
2023
with:
2124
path: google-api-java-client-services
25+
2226
- working-directory: google-api-java-client-services
2327
- run: |
24-
bash .github/workflows/verify.sh
28+
bash .github/workflows/verify.sh ${{ matrix.variant }}
2529

0 commit comments

Comments
 (0)