Skip to content

Renamed shared libraries to comply convetion #5

Renamed shared libraries to comply convetion

Renamed shared libraries to comply convetion #5

Workflow file for this run

name: build
on:
workflow_call:
inputs:
build_arch:
required: true
type: string
default: 'x86_64'
pull_request:
paths-ignore:
- "**/*.asciidoc"
- "**/*.md"
- "**/*.png"
push:
# branches:
# - main
paths-ignore:
- "**/*.asciidoc"
- "**/*.md"
- "**/*.png"
workflow_dispatch: ~
permissions:
contents: read
## Concurrency only allowed in the main branch.
## So old builds running for old commits within the same Pull Request are cancelled
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
build-native:
uses: ./.github/workflows/build-native.yml
setup-build-matrix:
uses: ./.github/workflows/build-arch-matrix-generator.yml
with:
build_arch: ${{ inputs.build_arch }}
build-packages:
needs:
- build-native
uses: ./.github/workflows/build-packages.yml
# The very last job to report whether the Workflow passed.
# This will act as the Branch Protection gatekeeper
ci:
needs:
- build-native
runs-on: ubuntu-latest
steps:
- name: report
run: echo "CI workflow passed"