urlhaus-filter/.gitlab-ci.yml

106 lines
2.3 KiB
YAML
Raw Normal View History

stages:
- deploy_stage
- failed_stage
- pages_stage
image: alpine:latest # Use the latest version of Alpine Linux docker image
2018-10-09 06:18:46 +00:00
deploy_job:
stage: deploy_stage
before_script:
# Install dependencies
- 'which ssh-agent || ( apk update && apk add openssh-client git grep)'
2018-10-09 06:18:46 +00:00
# Run ssh-agent
- eval $(ssh-agent -s)
2018-10-09 06:18:46 +00:00
# Import private key with ed25519 workaround
- echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add - > /dev/null
2019-10-01 05:45:59 +00:00
- echo "$GH_PRIVATE_KEY" | tr -d '\r' | ssh-add - > /dev/null
2018-10-09 06:18:46 +00:00
# Create the SSH directory and give it the right permissions
- mkdir -p ~/.ssh
- chmod 700 ~/.ssh
2018-10-09 06:18:46 +00:00
# Add gitlab.com as ssh known host
2019-10-01 05:45:59 +00:00
- echo "$SSH_KNOWN_HOSTS" > ~/.ssh/known_hosts
- chmod 644 ~/.ssh/known_hosts
2018-10-09 06:18:46 +00:00
# Set commit author
- git config --global user.name "curben-bot"
- git config --global user.email "curben-bot@users.noreply.gitlab.com"
2018-10-09 06:18:46 +00:00
script:
# SSH to gitlab.com
- ssh git@gitlab.com
# Shallow cloning for faster cloning
2018-10-10 04:44:59 +00:00
- git clone --depth 3 git@gitlab.com:curben/urlhaus-filter.git build
2018-10-10 06:57:16 +00:00
- cd build/
2018-10-09 06:18:46 +00:00
# Run scripts
- sh script.sh
2018-10-09 06:18:46 +00:00
# Commit the changes
2019-05-28 00:31:09 +00:00
- sh utils/commit.sh
2018-10-09 06:18:46 +00:00
# Push the commit
- git push
2019-10-01 05:45:59 +00:00
# Push to mirror
- ssh git@github.com
- git remote add mirror git@github.com:curbengh/urlhaus-filter.git
- git push mirror
after_script:
# Generate successful status badge
2019-06-11 02:23:52 +00:00
- mkdir -p /builds/curben/urlhaus-filter/public/
- wget https://img.shields.io/badge/pipeline-passed-success.svg -O /builds/curben/urlhaus-filter/public/status.svg
artifacts:
paths:
- public/status.svg
2018-10-09 06:18:46 +00:00
only:
2018-10-11 00:42:35 +00:00
# Allow CI to be triggered by schedule
2018-10-09 06:18:46 +00:00
- schedules
2018-10-11 00:42:35 +00:00
# Allow CI to be triggered manually
- web
failed_job:
stage: failed_stage
script:
# Generate failed status badge
2019-06-11 02:23:52 +00:00
- mkdir -p /builds/curben/urlhaus-filter/public/
2019-06-12 10:16:42 +00:00
- wget https://img.shields.io/badge/pipeline-failed-critical.svg -O /builds/curben/urlhaus-filter/public/status.svg
artifacts:
paths:
- public/status.svg
# Run this job only when deploy_job failed
when: on_failure
only:
- schedules
- web
pages:
stage: pages_stage
script:
- echo "Uploading status.svg to Pages..."
artifacts:
paths:
- public
when: always
only:
- schedules
- web