From 606224c3f6493d58ae0104ed02d8a116355cf285 Mon Sep 17 00:00:00 2001 From: Stefan Frijters Date: Tue, 1 Oct 2024 19:54:19 +0200 Subject: [PATCH] Try to fix CI --- .github/workflows/compile-check-blink.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/compile-check-blink.yml b/.github/workflows/compile-check-blink.yml index 3b5a00f..700c147 100644 --- a/.github/workflows/compile-check-blink.yml +++ b/.github/workflows/compile-check-blink.yml @@ -15,7 +15,18 @@ jobs: with: github_access_token: ${{ secrets.GITHUB_TOKEN }} - uses: DeterminateSystems/magic-nix-cache-action@v8 - - run: | + + # Work around https://github.com/containers/bubblewrap/issues/632 + - name: Disable apparmor + run: | + sudo systemctl stop apparmor.service + sudo systemctl disable apparmor.service + + - name: Compile test + run: | nix develop --command make -C blink compile + + - name: Formatter check + run: | nix fmt git diff --exit-code