Skip to content

test older version on container #1276

test older version on container

test older version on container #1276

Workflow file for this run

name: Code CI
on:
# Only run on changes to branches with open PRs
pull_request:
types: [opened, edited, synchronize]
# Run after PR merged, on implicit push, and on tag pushes
push:
tags:
- '*'
branches: [master, ci_test]
jobs:
# Make Boot files
make_boot:
uses: ./.github/workflows/_make_boot.yml
# Make zpkg for FPGA apps
make_zpkg:
uses: ./.github/workflows/_make_zpkg.yml

Check failure on line 21 in .github/workflows/code.yml

View workflow run for this annotation

GitHub Actions / Code CI

Invalid workflow file

The workflow is not valid. In .github/workflows/code.yml (Line: 21, Col: 11): Error from called workflow PandABlocks/PandABlocks-FPGA/.github/workflows/_make_zpkg.yml@496b2466f484432ce1a7fbc95e409421799d194b (Line: 27, Col: 7): Unexpected value 'args'
# Optional revert on failed push workflow
undo:
needs: [ make_boot, make_zpkg, test_hdl ]
uses: ./.github/workflows/_undo.yml
# Release on push to tag
release:
needs: [ make_boot, make_zpkg, test_hdl, test_matrix, test_python_autogen ]
uses: ./.github/workflows/_release.yml
# Generate job matrix to evenly split tests
test_matrix:
uses: ./.github/workflows/_test_matrix.yml
# python and autogen tests
test_python_autogen:
uses: ./.github/workflows/_test_python_autogen.yml
# hdl tests
test_hdl:
needs: [test_matrix, test_python_autogen]
uses: ./.github/workflows/_test_hdl.yml
with:
matrix: ${{needs.test_matrix.outputs.matrix}}