mirror of
https://github.com/mrrpnya/lipu-sona.git
synced 2025-02-13 16:44:39 +00:00
2696772df0
Clean up root folder
39 lines
1.3 KiB
YAML
39 lines
1.3 KiB
YAML
# The base image is Alpine Linux, because it's small and awesome
|
|
|
|
# Appears to be in disuse.
|
|
|
|
image: alpine:latest
|
|
|
|
stages: # List of stages for jobs, and their order of execution
|
|
- build
|
|
- test
|
|
- deploy
|
|
|
|
build-job: # This job runs in the build stage, which runs first.
|
|
stage: build
|
|
before_script:
|
|
- echo "Installing the dependencies..."
|
|
- apk add discount make bash perl gcc
|
|
script:
|
|
- make THEME=discount-theme
|
|
artifacts:
|
|
paths:
|
|
- "public"
|
|
|
|
unit-test-job: # This job runs in the test stage.
|
|
stage: test # It only starts when the job in the build stage completes successfully.
|
|
script:
|
|
- test $(stat -c %s public/index.html) -gt 0 #test that the index file exists
|
|
|
|
deploy-job: # This job runs in the deploy stage.
|
|
stage: deploy # It only runs when *both* jobs in the test stage complete successfully.
|
|
only:
|
|
- main #Do not run the deploy pipeline on merge requests
|
|
before_script:
|
|
- if [ -z "$DEPLOY_PRIVATE_KEY" ]; then echo "Can't deploy without a private key."; exit 1; fi
|
|
- echo "Installing the dependencies..."
|
|
- apk add bash curl jq
|
|
- curl https://gitlab.com/dev_urandom/neocities-uploader/-/raw/main/upload.sh?inline=false > upload.sh
|
|
- chmod +x upload.sh
|
|
script:
|
|
- ./upload.sh
|