diff --git a/.github/workflows/compile-check-blink.yml b/.github/workflows/compile-check-blink.yml index 3b5a00f..5a90ef2 100644 --- a/.github/workflows/compile-check-blink.yml +++ b/.github/workflows/compile-check-blink.yml @@ -15,7 +15,19 @@ 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 + sudo apt remove --assume-yes --purge apparmor + + - name: Compile test + run: | nix develop --command make -C blink compile + + - name: Formatter check + run: | nix fmt git diff --exit-code