Skip to content

Commit

Permalink
Actions: disable AppArmor entirely
Browse files Browse the repository at this point in the history
(cherry picked from commit 92a4562c10390fbb9d7a0eb907a693ad94b810df)
  • Loading branch information
michaelklishin committed Oct 14, 2024
1 parent 5a4a13e commit d851982
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/test-make-target.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ jobs:
ldap-utils \
slapd
sudo service apparmor stop
systemctl is-active --quiet apparmor.service && systemctl stop apparmor.service
systemctl disable apparmor.service
- name: RUN TESTS
if: inputs.plugin != 'rabbitmq_cli'
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test-plugin-mixed.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ jobs:
ldap-utils \
slapd
sudo service apparmor stop
systemctl is-active --quiet apparmor.service && systemctl stop apparmor.service
systemctl disable apparmor.service
cat << EOF >> user.bazelrc
build --strategy=TestRunner=local
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test-plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,9 @@ jobs:
ldap-utils \
slapd
sudo service apparmor stop
systemctl is-active --quiet apparmor.service && systemctl stop apparmor.service
systemctl disable apparmor.service
cat << EOF >> user.bazelrc
build --strategy=TestRunner=local
Expand Down

0 comments on commit d851982

Please sign in to comment.