From 8cad420c45a2c0aabdec525f89bc6c65d84b2e22 Mon Sep 17 00:00:00 2001 From: Jeremy Frasier Date: Thu, 23 Jan 2025 14:32:29 -0500 Subject: [PATCH] Reinstall firefox and passt These system packages had to be uninstalled to allow the disabling of the unix-chkpwd AppArmor profile, but can be reinstalled at this point. Co-authored-by: Nicholas McDonnell --- .github/workflows/build.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f0a05ff..a6b96a7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -267,13 +267,16 @@ jobs: sudo aa-disable /usr/sbin/unix_chkpwd if: ${{ startsWith(matrix.platform, 'fedora') }} - name: Run molecule tests - run: >- + run: | molecule test --platform-name ${{ matrix.platform }}-${{ matrix.architecture }} --scenario-name ${{ matrix.scenario }} + # TODO: Remove the apt-get install command when possible. See + # cisagov/skeleton-ansible-role#215 for more details. - name: Re-enable unix-chkpwd AppArmor profile - run: >- + run: | sudo aa-enforce /usr/sbin/unix_chkpwd + sudo apt-get install firefox passt if: ${{ startsWith(matrix.platform, 'fedora') }} - name: Setup tmate debug session uses: mxschmitt/action-tmate@v3