diff --git a/.github/workflows/e2e_ci.yml b/.github/workflows/e2e_ci.yml index 55548045d5b..13dae7f8c11 100644 --- a/.github/workflows/e2e_ci.yml +++ b/.github/workflows/e2e_ci.yml @@ -96,6 +96,7 @@ jobs: -DUSE_BUNDLED_GTEST=ON \ .. make -j6 libsinsp_e2e_tests + sudo rm -vfr test/libsinsp_e2e/resources/_proc cd .. - name: Cache build @@ -161,9 +162,12 @@ jobs: # different workers, so we rebuild the drivers. - name: Rebuild drivers run: | - cd build + pushd build make -B driver bpf - cd .. + pushd test/libsinsp_e2e/resources/ + sudo tar xzf fake-proc.tar.gz + popd + popd - name: Run e2e tests with ${{ matrix.driver.name }} 🏎️ if: matrix.arch == 'amd64'