Skip to content
Snippets Groups Projects
Commit 14dba9fd authored by Ingo Steldermann's avatar Ingo Steldermann
Browse files

Update .gitlab-ci.yml file

parent f49bfd81
No related branches found
No related tags found
No related merge requests found
Pipeline #1245281 failed
# The Docker image that will be used to build your app
image: ubuntu:latest
# Functions that should be executed before the build script is run
before_script:
- ":"
pages:
before_script:
- apt-get update -qq
- echo "install python"
- apt-get install python3-dev -y
- apt install python3.10-venv -y
- echo "install quarto"
- apt-get install curl -y
- mkdir -p /opt/quarto/${QUARTO_VERSION}
- curl -o quarto.tar.gz -L "https://github.com/quarto-dev/quarto-cli/releases/download/v${QUARTO_VERSION}/quarto-${QUARTO_VERSION}-linux-amd64.tar.gz"
- tar -zxvf quarto.tar.gz -C "/opt/quarto/${QUARTO_VERSION}" --strip-components=1
- ln -s /opt/quarto/${QUARTO_VERSION}/bin/quarto /usr/local/bin/quarto
- quarto install tinytex
- echo "check quarto installation"
- quarto check
script:
- rm -rf public
- cd scripts
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment