Skip to content

Commit

Permalink
ci: Disable AppArmor on latest Ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
kostko committed Jan 9, 2025
1 parent 731494a commit c481fe0
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,12 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Disable AppArmor
run: |
sudo systemctl stop apparmor.service
sudo systemctl disable apparmor.service
sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0
- name: Set up Node.js LTS
uses: actions/setup-node@v4
with:
Expand Down Expand Up @@ -387,6 +393,12 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Disable AppArmor
run: |
sudo systemctl stop apparmor.service
sudo systemctl disable apparmor.service
sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0
- name: Set up Rust
run: rustup show

Expand Down Expand Up @@ -497,6 +509,12 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Disable AppArmor
run: |
sudo systemctl stop apparmor.service
sudo systemctl disable apparmor.service
sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0
- name: Set up Rust
run: rustup show

Expand Down

0 comments on commit c481fe0

Please sign in to comment.