Skip to content

Commit

Permalink
adjust nightly triggers
Browse files Browse the repository at this point in the history
Signed-off-by: MarkAckert <[email protected]>
  • Loading branch information
MarkAckert committed Apr 24, 2024
1 parent 89ee77a commit 17be5b5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
1 change: 0 additions & 1 deletion .dependency/prepare_source_zip.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
#######################################################################
# Generate Zowe source zip file
#######################################################################
set -x

################################################################################
# contants
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-v1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:

env:
LOCAL_RELEASE_FOLDER: .release
DAY_RUN_BLD_FULL_TEST: Sun
DAY_RUN_BLD_FULL_TEST: Sat
FORCE_BUILD_TIME_THRESHOLD: 24

jobs:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/nightly-v2.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Zowe Nightly Pipeline for v2
on:
schedule:
# this sets to 7.10am everyday UTC time, 3.10am EST
- cron: '10 7 * * *'
# this sets to 4.10am everyday UTC time, 12.10am EST
- cron: '10 4 * * *'
workflow_dispatch:
inputs:
skip-promote:
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
if: ${{ github.event.inputs.skip-test != 'true' }}
run: |
DAYOFWEEK=$(date +"%a")
if [[ "$DAYOFWEEK" == 'Sat' ]] || [[ "$DAYOFWEEK" == 'Wed' ]] ; then
if [[ "$DAYOFWEEK" == 'Sun' ]] || [[ "$DAYOFWEEK" == 'Thu' ]] ; then
echo INSTALL_TEST="Zowe Release Tests" >> $GITHUB_ENV
else
echo INSTALL_TEST="Zowe Nightly Tests" >> $GITHUB_ENV
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly-v3.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Zowe Nightly Pipeline for v3
on:
schedule:
# this sets to 7.10am everyday UTC time, 3.10am EST
- cron: '10 7 * * *'
# this sets to 8.10am everyday UTC time, 4.10am EST
- cron: '10 8 * * *'
workflow_dispatch:
inputs:
skip-promote:
Expand Down

0 comments on commit 17be5b5

Please sign in to comment.