2023-07-13 18:13:07 +00:00
|
|
|
# The Docker image that will be used to build your app
|
2023-07-15 16:49:46 +00:00
|
|
|
image:
|
|
|
|
name: quay.io/ajhalili2006/mkdocs-material-build-ci:nightly
|
2023-07-13 18:13:07 +00:00
|
|
|
|
2023-07-15 16:22:08 +00:00
|
|
|
stages:
|
|
|
|
- build
|
2023-03-24 18:26:22 +00:00
|
|
|
|
2023-07-15 16:22:08 +00:00
|
|
|
default:
|
|
|
|
tags:
|
|
|
|
- amd64 # currently, we only the image in amd64 right now.
|
|
|
|
# Functions that should be executed before the build script is run
|
|
|
|
before_script:
|
|
|
|
- pip3 install -r requirements.txt
|
|
|
|
- npm ci
|
|
|
|
- curl --silent "https://gitlab.com/gitlab-org/incubation-engineering/mobile-devops/download-secure-files/-/raw/main/installer" | bash
|
|
|
|
# Global builds and stuff
|
2023-03-27 15:29:38 +00:00
|
|
|
variables:
|
2023-03-31 16:24:07 +00:00
|
|
|
DEBUG: "1"
|
2023-03-27 15:29:38 +00:00
|
|
|
FF_ENABLE_COMMIT_DATA: "true"
|
|
|
|
FF_GENERATE_SOCIAL_CARDS: "true"
|
|
|
|
SECURE_FILES_DOWNLOAD_PATH: /run/secrets
|
2023-07-16 16:21:47 +00:00
|
|
|
GIT_DEPTH: "0"
|
2023-03-24 18:26:22 +00:00
|
|
|
|
2023-07-13 18:13:07 +00:00
|
|
|
pages:
|
2023-07-15 16:22:08 +00:00
|
|
|
stage: build
|
2023-03-24 18:26:22 +00:00
|
|
|
script:
|
2023-07-14 17:26:31 +00:00
|
|
|
- doppler run -- ./bin/deploykit-pages.sh
|
2023-03-24 18:26:22 +00:00
|
|
|
artifacts:
|
|
|
|
paths:
|
2023-07-13 18:13:07 +00:00
|
|
|
# The folder that contains the files to be exposed at the Page URL
|
2023-03-24 18:26:22 +00:00
|
|
|
- public
|
2023-07-14 17:26:31 +00:00
|
|
|
variables:
|
|
|
|
CF_PAGES_PROJECT_NAME: ajhalili2006
|
2023-03-27 15:29:38 +00:00
|
|
|
rules:
|
2023-07-13 18:13:07 +00:00
|
|
|
# This ensures that only pushes to the default branch will trigger
|
|
|
|
# a pages deploy
|
|
|
|
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
|
2023-07-15 16:22:08 +00:00
|
|
|
pages:srht:
|
|
|
|
stage: build
|
|
|
|
needs:
|
|
|
|
- pages
|
|
|
|
script:
|
|
|
|
- tar -C gmi -cvz . -f site.tar.gz
|
2023-07-15 16:49:46 +00:00
|
|
|
- doppler run -- ./bin/deploykit-gmi.sh
|
2023-07-15 16:22:08 +00:00
|
|
|
rules:
|
|
|
|
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
|