2023-07-24 12:12:13 +02:00
|
|
|
---
|
2023-07-24 11:05:38 +02:00
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: default
|
|
|
|
|
|
|
|
steps:
|
2023-07-25 00:00:47 +02:00
|
|
|
- name: github-mirror
|
|
|
|
image: alpine
|
|
|
|
environment:
|
|
|
|
SSH_PUBKEY:
|
|
|
|
from_secret: ssh_pubkey
|
|
|
|
SSH_PRIVKEY:
|
|
|
|
from_secret: ssh_privkey
|
|
|
|
|
|
|
|
commands:
|
|
|
|
- apk add --update --no-cache git openssh
|
|
|
|
- mkdir -p ~/.ssh
|
|
|
|
- |
|
|
|
|
cat <<EOF > ~/.ssh/id_rsa.pub
|
|
|
|
$SSH_PUBKEY
|
|
|
|
EOF
|
|
|
|
- |
|
|
|
|
cat <<EOF > ~/.ssh/id_rsa
|
|
|
|
$SSH_PRIVKEY
|
|
|
|
EOF
|
|
|
|
- chmod 0600 ~/.ssh/id_rsa
|
|
|
|
- ssh-keyscan github.com >> ~/.ssh/known_hosts 2>/dev/null
|
2023-07-25 00:21:56 +02:00
|
|
|
- git config --global --add safe.directory $PWD
|
2023-07-25 00:00:47 +02:00
|
|
|
- git remote add github git@github.com:/BlackLight/platypush.git
|
|
|
|
- git pull github master
|
2023-07-25 00:21:56 +02:00
|
|
|
- git push --all -v github
|
2023-07-25 00:00:47 +02:00
|
|
|
|
2023-07-24 11:05:38 +02:00
|
|
|
- name: run-tests
|
|
|
|
image: python:3.11-alpine
|
|
|
|
commands:
|
|
|
|
- apk add --update --no-cache redis
|
|
|
|
- apk add --update --no-cache --virtual build-base g++ rust
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install .
|
|
|
|
- pip install -r requirements-tests.txt
|
|
|
|
- apk del build-base g++ rust
|
|
|
|
- pytest tests
|