Add ock artefact building #190
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 planned style tests | ||
name: Run planned testing | ||
on: | ||
pull_request: | ||
paths: | ||
- '.github/workflows/planned_testing.yml' | ||
- '.github/workflows/planned_testing_caller.yml' | ||
branches: | ||
- main | ||
schedule: | ||
# Run Mon-Fri at 7pm | ||
- cron: '00 19 * * 1-5' | ||
jobs: | ||
run-with-pull: | ||
# This makes the diagram too big if we post much here so P_ for pull request. | ||
name: P_ | ||
if: ${{ github.event_name == 'pull_request' }} | ||
uses: ./.github/workflows/planned_testing.yml | ||
Check failure on line 19 in .github/workflows/planned_testing_caller.yml GitHub Actions / Run planned testingInvalid workflow file
|
||
with: | ||
target_list: '["host_x86_64_linux", "host_aarch64_linux", "host_riscv64_linux", "host_i686_linux", "host_refsi_linux", "host_x86_64_windows" ]' | ||
test_tornado: true | ||
ock: true | ||
# Have a pull request setting which can be used to test the flow as best as possible | ||
# in a reasonable time | ||
pull_request: TRUE | ||
run-with-cron: | ||
name: Call PR testing on schedule | ||
if: ${{ github.event_name == 'schedule' }} | ||
uses: ./.github/workflows/planned_testing.yml | ||
# additional ones here for cron and/or push to main - also can be in different file. |