Changeset 59635
- Timestamp:
- 01/16/2025 08:19:28 PM (6 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/reusable-javascript-tests.yml
r59354 r59635 6 6 on: 7 7 workflow_call: 8 inputs: 9 disable-apparmor: 10 description: 'Whether to disable AppArmor.' 11 required: false 12 type: 'boolean' 13 default: false 8 14 9 15 jobs: … … 45 51 run: npm ci 46 52 53 # Older branches using outdated versions of Puppeteer fail on newer versions of the `ubuntu-24` image. 54 # This disables AppArmor in order to work around those failures. 55 # 56 # See https://issues.chromium.org/issues/373753919 57 # and https://chromium.googlesource.com/chromium/src/+/main/docs/security/apparmor-userns-restrictions.md 58 - name: Disable AppArmor 59 if: ${{ inputs.disable-apparmor }} 60 run: echo 0 | sudo tee /proc/sys/kernel/apparmor_restrict_unprivileged_userns 61 47 62 - name: Run QUnit tests 48 63 run: npm run grunt qunit:compiled
Note: See TracChangeset
for help on using the changeset viewer.