DRAFT: Add ock artefact building #227
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Calling workflow for running PR style tests | |
name: Run ock tests for PR style testing | |
on: | |
pull_request: | |
paths: | |
- 'source/**' | |
- 'clik/**' | |
- 'modules/**' | |
- 'examples/**' | |
- 'cmake/**' | |
- 'hal/**' | |
- '.github/actions/do_build_ock/**' | |
- '.github/actions/setup_build/**' | |
- '.github/workflows/run_pr_tests.yml' | |
- 'CMakeLists.txt' | |
schedule: | |
# Run Mon-Fri at 7pm | |
- cron: '00 19 * * 1-5' | |
jobs: | |
# run-with-pull: | |
# name: Call PR testing on pull request | |
# if: ${{ github.event_name == 'pull_request' }} | |
# uses: ./.github/workflows/run_pr_tests.yml | |
# with: | |
# update_cache: false | |
# # Could have multiple here | |
# run-with-cron: | |
# name: Call PR testing on schedule | |
# if: ${{ github.event_name == 'schedule' }} | |
# uses: ./.github/workflows/run_pr_tests.yml | |
# with: | |
# update_cache: true | |
# additional ones here for cron and/or push to main - also can be in different file. |