-
Notifications
You must be signed in to change notification settings - Fork 0
23 lines (21 loc) · 836 Bytes
/
ci.yml
File metadata and controls
23 lines (21 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name: CI
on:
pull_request:
branches: [main]
jobs:
perform_overlay_and_cache:
name: Overlay Base Software and Cache
uses: ./.github/workflows/overlay_software_and_cache.yml
create_version:
name: Create Version
uses: ./.github/workflows/create_version.yml
perform_ci:
name: Perform CI
needs: [perform_overlay_and_cache, create_version]
## GitHub currently does not support evaluating expressions
# uses: waggle-sensor/wildnode-image/blob/main/.github/workflows/ci.yml@${{ needs.run_base_image_tag_collector.outputs.base_image_tag }}
uses: waggle-sensor/wildnode-image/.github/workflows/ci.yml@main
secrets: inherit
with:
overlay_cache_key: ${{ needs.perform_overlay_and_cache.outputs.overlay_cache_key }}
version_extension: ${{ needs.create_version.outputs.version }}