Skip to content

Github-actions: add ciEntryPoint workflow #7

Github-actions: add ciEntryPoint workflow

Github-actions: add ciEntryPoint workflow #7

Workflow file for this run

name: Continuous Integration pipeline
on: push
jobs:
check:
uses: ./.github/workflows/check.yml
build-os-matrix:
needs: check
runs-on: ubuntu-latest
outputs:
os: ${{ steps.os.outputs.os }}
steps:
- name: Build OS Array
id: os
run: |
osArray=()
osArray+=("oraclelinux:9")
osArray=$(jq --compact-output --null-input '$ARGS.positional' --args -- "${osArray[@]}")
echo "Updated os list: $osArray"
echo "os=$osArray" >> $GITHUB_OUTPUT
build:
needs: [build-os-matrix]
strategy:
matrix:
os: ${{ fromJSON(needs.build-os-matrix.outputs.os) }}
uses: ./.github/workflows/build.yml
with:
os: ${{ matrix.os }}
make=tests:

Check failure on line 31 in .github/workflows/ciEntryPoint.yml

View workflow run for this annotation

GitHub Actions / Continuous Integration pipeline

Invalid workflow file

The workflow is not valid. .github/workflows/ciEntryPoint.yml (Line: 31, Col: 3): The identifier 'make=tests' is invalid. IDs may only contain alphanumeric characters, '_', and '-'. IDs must start with a letter or '_' and and must be less than 100 characters.
needs: [build-os-matrix]
strategy:
matrix:
os: ${{ fromJSON(needs.build-os-matrix.outputs.os) }}
uses: ./.github/workflows/tests.yml
with:
os: ${{ matrix.os }}