Skip to content

Generates TSL for ARM #61

Generates TSL for ARM

Generates TSL for ARM #61

name: Generating for ARM
run-name: Generates TSL for ARM
on:
workflow_run:
workflows: [Build and test for Intel / ARM]
types:
- completed
jobs:
check-generation:
runs-on: ubuntu-latest
if: github.event.workflow_run.conclusion != 'success'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download workflow artifact
uses: dawidd6/action-download-artifact@v3
with:
workflow: build-and-test.yml
name: arm_generation_failed
path: ${{ github.workspace }}/status
if_no_artifact_found: ignore
skip_unpack: true
- name: Fail on status existing
run: |
if [ -f ${{ github.workspace }}/status/arm_generation_failed ]; then
echo "Generation failed"
exit 1
fi
everything-fine:
runs-on: ubuntu-latest
if: github.event.workflow_run.conclusion == 'success'
steps:
- name: Everything is fine
run: echo "Everything is fine"