stages: - build - deploy build: stage: build image: python:2.7 before_script: - pip install -U platformio - platformio update script: - platformio ci --project-conf platformio.ini --board=lolin_d32_pro --build-dir build --keep-build-dir # - date +%s > build/.pio/build/lolin_d32_pro/build.version variables: {PLATFORMIO_CI_SRC: "src"} artifacts: paths: - build/.pio/build/lolin_d32_pro/*.bin - version.txt deploy: stage: deploy image: alpine:latest before_script: - apk update && apk add openssh-client bash rsync # - 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )' - eval $(ssh-agent -s) - echo "${SSH_PRIVATE_KEY}" | tr -d '\r' | ssh-add - > /dev/null - mkdir -p ~/.ssh - chmod 700 ~/.ssh - echo "${SSH_HOST_KEY}" > ~/.ssh/known_hosts - chmod 644 ~/.ssh/known_hosts script: - scp build/.pio/build/lolin_d32_pro/firmware.bin "${SSH_USER_HOST}:${DEPLOY_PATH}" - scp version.txt "${SSH_USER_HOST}:${DEPLOY_PATH}".version dependencies: - build when: manual only: - master