Skip to content

Commit

Permalink
Inspect and update iptables
Browse files Browse the repository at this point in the history
Signed-off-by: Kyle Harding <[email protected]>
  • Loading branch information
klutchell committed Feb 29, 2024
1 parent 19833ed commit a67efdf
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/yocto-build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -282,11 +282,15 @@ jobs:
run: |
mkdir -p "${YOCTO_CACHE_DIR}/$(whoami)" 2>/dev/null || true
sudo iptables-nft -L || true
sudo iptables-nft -N DOCKER-ISOLATION-STAGE-1 || true
sudo iptables-nft -I DOCKER-ISOLATION-STAGE-1 -j RETURN || true
./balena-yocto-scripts/build/balena-build.sh \
-d "${MACHINE}" \
-t "${{ secrets.BALENA_API_KEY }}" \
-s "${YOCTO_CACHE_DIR}/$(whoami)" \
-g "${BARYS_ARGUMENTS_VAR}" | tee build.log
-g "${BARYS_ARGUMENTS_VAR}"
if grep -R "ERROR: " build/tmp/log/*; then
exit 1
Expand Down

0 comments on commit a67efdf

Please sign in to comment.