chore(ci): cleanup unused fields.

Signed-off-by: Federico Di Pierro <nierro92@gmail.com>
This commit is contained in:
Federico Di Pierro 2025-02-14 09:54:34 +01:00 committed by poiana
parent 9f1bc7d518
commit 2752e0d60f
2 changed files with 3 additions and 6 deletions

View File

@ -52,11 +52,8 @@ jobs:
test-dev-packages-arm64: test-dev-packages-arm64:
needs: [fetch-version, build-dev-packages-arm64] needs: [fetch-version, build-dev-packages-arm64]
uses: ./.github/workflows/reusable_test_packages.yaml uses: ./.github/workflows/reusable_test_packages.yaml
strategy:
fail-fast: false
with: with:
arch: aarch64 arch: aarch64
static: ${{ matrix.static != '' && true || false }}
version: ${{ needs.fetch-version.outputs.version }} version: ${{ needs.fetch-version.outputs.version }}
build-dev-minimal: build-dev-minimal:

View File

@ -40,8 +40,7 @@ jobs:
tar -xvf $(ls falco-*.tar.gz) tar -xvf $(ls falco-*.tar.gz)
cd falco-${{ inputs.version }}-${{ inputs.arch }} cd falco-${{ inputs.version }}-${{ inputs.arch }}
sudo cp -r * / sudo cp -r * /
# We only run driver loader tests on x86_64
- name: Install kernel headers for falco-driver-loader tests - name: Install kernel headers for falco-driver-loader tests
run: | run: |
sudo apt update -y sudo apt update -y
@ -49,6 +48,7 @@ jobs:
# Some builds use sanitizers, we always install support for them so they can run # Some builds use sanitizers, we always install support for them so they can run
- name: Install sanitizer support - name: Install sanitizer support
if: inputs.sanitizers
run: | run: |
sudo apt update -y sudo apt update -y
sudo apt install -y libasan5 libubsan1 sudo apt install -y libasan5 libubsan1
@ -56,7 +56,7 @@ jobs:
- name: Run tests - name: Run tests
env: env:
LSAN_OPTIONS: "intercept_tls_get_addr=0" LSAN_OPTIONS: "intercept_tls_get_addr=0"
uses: falcosecurity/testing@main uses: falcosecurity/testing@main
with: with:
test-falco: 'true' test-falco: 'true'
test-falcoctl: 'true' test-falcoctl: 'true'