2022-03-30 10:26:37 +00:00
|
|
|
name: "SCALE: catalog-tests"
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_call:
|
|
|
|
inputs:
|
|
|
|
checkoutCommit:
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
chartChangesDetected:
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
|
|
|
|
jobs:
|
2022-03-30 10:38:40 +00:00
|
|
|
catalog-tests:
|
|
|
|
name: Test SCALE Catalog
|
2022-03-30 10:26:37 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
2022-11-24 10:04:25 +00:00
|
|
|
image: ghcr.io/truecharts/devcontainer:v3.1.1@sha256:b682ca20989c13c4afc8edf0660f83ce8e896e32db21d6321ba06f135911fc81
|
2022-03-30 10:26:37 +00:00
|
|
|
steps:
|
2022-11-15 08:37:58 +00:00
|
|
|
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3
|
2022-03-30 10:26:37 +00:00
|
|
|
name: Checkout
|
|
|
|
with:
|
|
|
|
fetch-depth: 100
|
|
|
|
ref: ${{ inputs.checkoutCommit }}
|
|
|
|
|
2022-11-24 10:38:48 +00:00
|
|
|
- name: Setting repo parent dir as safe safe.directory
|
|
|
|
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
|
|
|
|
|
2022-03-30 10:26:37 +00:00
|
|
|
- name: Checkout
|
2022-11-15 08:37:58 +00:00
|
|
|
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3
|
2022-03-30 10:26:37 +00:00
|
|
|
with:
|
|
|
|
repository: truecharts/catalog
|
|
|
|
path: catalog
|
|
|
|
|
|
|
|
- name: build-and-run
|
|
|
|
run: |
|
|
|
|
tools/build-release.sh
|
2022-07-06 11:25:34 +00:00
|
|
|
|
2022-07-06 18:09:28 +00:00
|
|
|
- uses: vishnudxb/cancel-workflow@c3c77eb4383ba7d023e6614a07d94fe990501ac6 # tag=v1.2
|
2022-07-06 11:25:34 +00:00
|
|
|
if: failure()
|
|
|
|
with:
|
2022-08-08 21:57:58 +00:00
|
|
|
repo: truecharts/charts
|
2022-07-06 11:25:34 +00:00
|
|
|
workflow_id: ${{ github.run_id }}
|
|
|
|
access_token: ${{ github.token }}
|