From 3975d39d74407d31b55179d590e37dea5d6b11cb Mon Sep 17 00:00:00 2001 From: Bertrand Benjamin Date: Fri, 7 Aug 2020 18:35:16 +0200 Subject: [PATCH] Feat: add drone --- .drone.yml | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..bdb963d --- /dev/null +++ b/.drone.yml @@ -0,0 +1,54 @@ +--- +kind: pipeline +name: Opytex 2020-2021 +type: docker + +workspace: + path: /drone/content/ + +steps: + - name: Build Opytex 2020-2021 + image: python:3.8-alpine + commands: + - apk add --no-cache git imagemagick + - cd .. + - git init . + - git remote add origin https://git.opytex.org/lafrite/site_opytex.git + - git pull origin 2020-2021 + - git checkout 2020-2021 + - git submodule init + - git submodule update + - pip install --no-cache-dir -r requirements.txt + - export MAGICK_HOME=/usr + - pelican content/ -o output -s publishconf.py --relative-urls + + - apk add --no-cache openssh-client ca-certificates bash rsync + - eval `ssh-agent -s` + - echo "$SSH_KEY" | ssh-add - + - mkdir -p ~/.ssh + - echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config + - ssh sshcontent@91.121.90.228 'mkdir -p ~/raw.opytex.org/www/enseignements/2020-2021/' + - rsync -rv --delete -e "ssh -p 22" ./output/ sshcontent@91.121.90.228:~/raw.opytex.org/www/enseignements/2020-2021/ --checksum + environment: + SSH_KEY: + from_secret: sshcontent-key + +kind: pipeline +name: Push Content +type: docker +steps: + - name: Push Raw + image: alpine + commands: + - apk add --no-cache openssh-client ca-certificates bash + - apk add rsync + - echo Début du Push + - eval `ssh-agent -s` + - echo "$SSH_KEY" | ssh-add - + - mkdir -p ~/.ssh + - echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config + - rsync -rv --delete -e "ssh -p 22" --exclude ".git" --exclude "config*" --exclude "tools/" --exclude "*.rst" --exclude "*.tex" ./ sshcontent@91.121.90.228:~/raw.opytex.org/www/ --checksum + environment: + SSH_KEY: + from_secret: sshcontent-key +