Skip to content

Commit

Permalink
chore(ci) daily schedule Large CI & allow dispatching CIs
Browse files Browse the repository at this point in the history
Prepare Large CI for re-enabling.
  • Loading branch information
thibaultcha committed Aug 14, 2023
1 parent 30019bc commit dd2a949
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/ci-large.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
name: Large CI

on:
pull_request:
branches: '**'
schedule:
- cron: '0 9 * * mon' # 9am UTC, 2am PST
- cron: '0 9 * * *' # 9am UTC, 2am PST
workflow_dispatch:

defaults:
run:
Expand All @@ -29,7 +32,7 @@ jobs:
hup: [hup, no_hup]
module_type: [static, dynamic]
include:
# OpenResty + dynamic ngx_wasm_module
# OpenResty + static ngx_wasm_module
- label: dynamic_module
os: ubuntu-latest
cc: gcc-9
Expand All @@ -39,7 +42,7 @@ jobs:
debug: debug
hup: no_hup
ssl: ssl
module_type: dynamic
module_type: static
uses: ./.github/workflows/job-unit-tests.yml
with:
os: ${{ matrix.os }}
Expand All @@ -56,8 +59,8 @@ jobs:
module_type: ${{ matrix.module_type }}

valgrind-large:
if: ${{ false }}
name: 'Valgrind'
if: ${{ false }}
strategy:
fail-fast: false
matrix:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches: main
pull_request:
branches: '**'
workflow_dispatch:

defaults:
run:
Expand Down

0 comments on commit dd2a949

Please sign in to comment.