From fe9300b547f72255e75aa1ff6e86772b1364ae84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=AD=20Bosch?= Date: Thu, 15 Aug 2024 11:34:44 +0200 Subject: [PATCH] build: init codejail plugin before building --- .github/workflows/build.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 68677e3..5d7a0ab 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -88,6 +88,16 @@ jobs: run: | tutor config save --set DOCKER_IMAGE_OPENEDX=${DOCKER_IMAGE_OPENEDX_REPOSITORY}:${REPOSITORY_TAG_OPENEDX} + - name: install and enable codejail plugin + id: tutor-codejail-plugin + shell: bash + run: | + pip install git+https://github.com/edunext/tutor-contrib-codejail@v18.0.0 + tutor plugins enable codejail + tutor config save + # run the initialization jobs to install the required AppArmor profile + tutor local do init --limit codejail + - name: set tutor-dependent environment variables shell: bash run: |