track tags with a map #16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update Plugins-dev | ||
on: | ||
push: | ||
branches: [ master ] | ||
workflow_dispatch: | ||
# Checks if any concurrent jobs is already being executed for master and cancel it. | ||
concurrency: | ||
group: ci-master | ||
cancel-in-progress: true | ||
jobs: | ||
build-plugins-dev: | ||
uses: falcosecurity/plugins/.github/workflows/reusable_build_packages.yaml@master | ||
with: | ||
makecommand: make packages -j4 | ||
suffix: dev | ||
secrets: inherit | ||
get-changed-plugins: | ||
uses: ./.github/workflows/reusable_get_changed_plugins.yaml | ||
build-rules-tool: | ||
needs: [get-changed-plugins] | ||
if: needs.get-changed-plugins.outputs.changed-plugins != '[]' && needs.get-changed-plugins.outputs.changed-plugins != '' | ||
uses: ./.github/workflows/reusable_build_rules_tool.yaml | ||
with: | ||
output: rules-checker | ||
repository: falcosecurity/rules | ||
validate-plugins: | ||
needs: [build-plugins-dev, get-changed-plugins, build-rules-tool] | ||
if: needs.get-changed-plugins.outputs.changed-plugins != '[]' && needs.get-changed-plugins.outputs.changed-plugins != '' | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
plugin: ${{ fromJson(needs.get-changed-plugins.outputs.changed-plugins) }} | ||
uses: ./.github/workflows/reusable_validate_plugins.yaml | ||
with: | ||
plugin: ${{ matrix.plugin }} | ||
falcoctl-version: 0.6.2 | ||
falco-image: falcosecurity/falco-no-driver:0.36.2 | ||
plugins-artifact: plugins-x86_64-dev.tar.gz | ||
rules-checker: ./rules-checker | ||
arch: x86_64 | ||
publish-plugins-dev: | ||
Check failure on line 48 in .github/workflows/master.yaml GitHub Actions / Update Plugins-devInvalid workflow file
|
||
needs: [build-plugins-dev, validate-plugins] | ||
uses: falcosecurity/plugins/.github/workflows/reusable_publish_packages.yaml@master | ||
with: | ||
suffix: dev | ||
secrets: inherit |