Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ on:
- cron: '0 13 * * *'
# Java 17
- cron: '0 16 * * *'
# branch-3.3
- cron: '0 19 * * *'
workflow_call:
inputs:
ansi_enabled:
Expand Down Expand Up @@ -99,6 +101,12 @@ jobs:
echo '::set-output name=type::scheduled'
echo '::set-output name=envs::{"SKIP_MIMA": "true", "SKIP_UNIDOC": "true"}'
echo '::set-output name=hadoop::hadoop3'
elif [ "${{ github.event.schedule }}" = "0 19 * * *" ]; then
echo '::set-output name=java::8'
echo '::set-output name=branch::branch-3.3'
echo '::set-output name=type::scheduled'
echo '::set-output name=envs::{"SCALA_PROFILE": "scala2.13"}'
echo '::set-output name=hadoop::hadoop3.3'
else
echo '::set-output name=java::8'
echo '::set-output name=branch::master' # NOTE: UPDATE THIS WHEN CUTTING BRANCH
Expand Down