Skip to content

Commit 4fe0cc5

Browse files
committed
also run clirr on migrated handwrittens
1 parent 04524a2 commit 4fe0cc5

1 file changed

Lines changed: 21 additions & 1 deletion

File tree

.github/workflows/ci.yaml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,8 +246,28 @@ jobs:
246246
JOB_TYPE: test
247247
JOB_NAME: units-8-runtime-${{matrix.java}}
248248
working-directory: ${{matrix.package}}
249+
split-clirr:
250+
runs-on: ubuntu-latest
251+
needs: changes
252+
strategy:
253+
matrix:
254+
package: ${{ fromJSON(needs.changes.outputs.packages) }}
255+
steps:
256+
- name: Get current week within the year
257+
id: date
258+
run: echo "::set-output name=week_of_year::$(date +'%W' --utc)"
259+
- uses: actions/checkout@v4
260+
- uses: actions/setup-java@v4
261+
with:
262+
distribution: temurin
263+
java-version: 11
264+
- run: .kokoro/build.sh
265+
env:
266+
BUILD_SUBDIR: ${{matrix.package}}
267+
JOB_TYPE: clirr
268+
JOB_NAME: clirr-${{matrix.package}}
249269
required:
250-
needs: [ changes, split-units ]
270+
needs: [ changes, split-units, split-clirr ]
251271
name: conditional-required-check
252272
if: ${{ always() }} # Always run even if any "needs" jobs fail
253273
runs-on: ubuntu-22.04

0 commit comments

Comments
 (0)