Skip to content

Workflow file for this run

name: pull_request
run-name: >-
${{github.event.pull_request.title}}
(#${{github.event.number}})
on:
schedule:
- cron: "33 06 * * 0" # Sunday at 6:33 am UTC
jobs:
clear-ccache:
uses: ./.github/workflows/clear-cache.yml
build-fast:
needs: [clear-cache]

Check failure on line 14 in .github/workflows/cron_weekly.yml

View workflow run for this annotation

GitHub Actions / pull_request

Invalid workflow file

The workflow is not valid. .github/workflows/cron_weekly.yml (Line: 14, Col: 13): Job 'build-fast' depends on unknown job 'clear-cache'. .github/workflows/cron_weekly.yml (Line: 17, Col: 13): Job 'build-ultralite' depends on unknown job 'clear-cache'.
uses: ./.github/workflows/build-fast.yml
build-ultralite:
needs: [clear-cache]
uses: ./.github/workflows/build-ultralite.yml
build-spack:
needs: [clear-cache]
uses: ./.github/workflows/build-spack.yml
all:
if: ${{always()}}
needs:
- build-fast
- build-spack
- build-ultralite
runs-on: ubuntu-latest
steps:
- name: Check that all jobs succeeded
uses: re-actors/alls-green@release/v1
with:
jobs: ${{toJSON(needs)}}
# vim: set nowrap tw=100: