Skip to content
Snippets Groups Projects
Commit 96148fa7 authored by Luke Naylor's avatar Luke Naylor
Browse files

Avoid using make in sagemath container

parent 324fa7b3
No related branches found
No related tags found
No related merge requests found
Pipeline #24623 failed
......@@ -16,7 +16,10 @@ create-py-modules:
name: docker.io/sagemath/sagemath
entrypoint: [""]
tags: ["x64"]
script: make pymodules
script:
# This container does not have make
- sage --preparse sagetexscripts/*.sage
- echo sagetexscripts/*.sage | sed -e 's;\.sage$;;' | xargs -I % sh -c 'mv %.sage.py %.py'
artifacts:
paths:
- sagetexscripts/*.py
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment