-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: init codejail plugin before building
- Loading branch information
1 parent
5d7931d
commit fe9300b
Showing
1 changed file
with
10 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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/[email protected] | ||
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: | | ||
|