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

Adjust CI to new purpose-built container image

parent 08c8daf5
No related branches found
No related tags found
No related merge requests found
Pipeline #26761 failed
variables: variables:
GIT_SUBMODULE_STRATEGY: normal GIT_SUBMODULE_STRATEGY: normal
sagetex-sty-copy:
image:
name: docker.io/sagemath/sagemath
entrypoint: [""]
tags: ["x64"]
script: cp /home/sage/sage/local/var/lib/sage/venv-python3.*/share/texmf/tex/latex/sagetex/sagetex.sty .
artifacts:
paths:
- sagetex.sty
create-sage-scripts:
image: docker.io/texlive/texlive
tags: ["x64"]
needs: [sagetex-sty-copy]
script:
- make main.sagetex.sage
- make filtered_sage.txt
after_script:
- cat main.log
artifacts:
paths:
- "*"
run-sage-script:
image:
name: docker.io/sagemath/sagemath
entrypoint: [""]
needs: [create-sage-scripts]
tags: ["x64"]
script:
- sage -pip install "pseudowalls==0.0.3" --extra-index-url https://gitlab.com/api/v4/projects/43962374/packages/pypi/simple
- sage main.sagetex.sage
artifacts:
paths:
- "*"
build: build:
image: docker.io/texlive/texlive image: registry.gitlab.com/lukenaylor/latex/sagetex-image:latest
needs: [run-sage-script]
tags: ["x64"] tags: ["x64"]
script: script:
- latexmk || echo failed final latexmk - sage -pip install "pseudowalls==0.0.3" --extra-index-url https://gitlab.com/api/v4/projects/43962374/packages/pypi/simple
- make || echo make failed
artifacts: artifacts:
paths: paths:
- "*" - "*"
......
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