diff --git a/.github/workflows/nightly_ci_build.yml b/.github/workflows/nightly_ci_build.yml index ac8d39e1..b2b3a99a 100644 --- a/.github/workflows/nightly_ci_build.yml +++ b/.github/workflows/nightly_ci_build.yml @@ -1,11 +1,11 @@ name: nightly_build on: - push: - # schedule: + # push: + schedule: # https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule # 5:24 am UTC (11:24pm MDT the day before) every weekday night in MDT - # - cron: '24 5 * * 2-6' + - cron: '24 5 * * 2-6' env: # Favor_Local_Gems enforces develop branch of all Ruby dependencies diff --git a/Jenkinsfile b/Jenkinsfile deleted file mode 100644 index babb259d..00000000 --- a/Jenkinsfile +++ /dev/null @@ -1,10 +0,0 @@ -//Jenkins pipelines are stored in shared libaries. Please see: https://github.com/tijcolem/nrel_cbci_jenkins_libs - -@Library('cbci_shared_libs') _ - -// Build for PR to develop branch only. -if ((env.CHANGE_ID) && (env.CHANGE_TARGET) ) { // check if set - - urbanopt_cli() - -}