File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments