diff --git a/.github/workflows/drivers_ci.yml b/.github/workflows/drivers_ci.yml index 1ba8b128d1..2e3b2eee68 100644 --- a/.github/workflows/drivers_ci.yml +++ b/.github/workflows/drivers_ci.yml @@ -76,6 +76,14 @@ jobs: uses: self-actuated/get-kernel-sources@201eed7d915ac0a6021fb402cde5be7a6b945b59 if: (needs.paths-filter.outputs.driver == 'true' || needs.paths-filter.outputs.libscap == 'true' || needs.paths-filter.outputs.libpman == 'true') && matrix.arch == 'arm64' + - name: Install kernel headers (actuated) + if: (needs.paths-filter.outputs.driver == 'true' || needs.paths-filter.outputs.libscap == 'true' || needs.paths-filter.outputs.libpman == 'true') && matrix.arch == 'arm64' + run: | + sudo modprobe configs + cat /proc/config.gz | gunzip > /tmp/config + cat /tmp/config + cat /tmp/config | grep "CONFIG_COMPAT" + - name: Install kernel headers if: (needs.paths-filter.outputs.driver == 'true' || needs.paths-filter.outputs.libscap == 'true' || needs.paths-filter.outputs.libpman == 'true') && matrix.arch == 'amd64' run: |