Skip to content

Commit

Permalink
Merge pull request #1842 from itsmeakashgoyal/updated-gha-workflows-gcc
Browse files Browse the repository at this point in the history
Schedule gcc builds once per week (Saturday)
  • Loading branch information
Akash Goyal authored Aug 25, 2021
2 parents c3902b9 + a8aed0f commit 8ccfdbd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build_and_test_gcc_debug.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: Debug build (gcc)
on: [push, pull_request]
on:
schedule:
- cron: "0 12 * * 6" # Every Saturday at 12PM UTC

jobs:
build:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/build_and_test_gcc_release.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: Release build (gcc)
on: [push, pull_request]
on:
schedule:
- cron: "0 12 * * 6" # Every Saturday at 12PM UTC

jobs:
build:
Expand Down

0 comments on commit 8ccfdbd

Please sign in to comment.