From 89a9dfa27aa3fc788bd69f92baa15918ef88bc14 Mon Sep 17 00:00:00 2001 From: Robert Nelson Date: Mon, 11 Mar 2024 15:35:35 -0500 Subject: [PATCH] ci: generate pages Signed-off-by: Robert Nelson --- .gitlab-ci.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 367fdf9..ea322f8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,9 @@ image: robertcnelson/debian-bookworm-slim-riscv:latest +variables: + FF_USE_FASTZIP: "true" + CACHE_COMPRESSION_LEVEL: "fast" + cache: key: "$CI_PROJECT_NAME" paths: @@ -40,3 +44,18 @@ build: - "deploy/readme.md" - "deploy/beaglev_fire.itb" - "deploy/modules.tar.gz" + +pages: + tags: + - docker-amd64 + stage: pages + script: + - mkdir -p ./public/ || true + - cp -v ./deploy/ ./public/ + - apindex public + artifacts: + when: on_success + paths: + - public + only: + - main