snort/.drone.yml

71 lines
1.8 KiB
YAML
Raw Normal View History

2023-05-14 21:15:34 +00:00
---
kind: pipeline
type: kubernetes
2023-05-14 21:17:45 +00:00
name: crowdin
2023-05-14 21:15:34 +00:00
metadata:
namespace: git
steps:
2023-05-15 09:54:06 +00:00
- name: Push/Pull translations
2023-05-14 21:36:54 +00:00
image: node:current-bullseye
2023-05-15 09:29:55 +00:00
environment:
TOKEN:
from_secret: drone_gitea
2023-05-15 09:54:06 +00:00
CTOKEN:
from_secret: crowdin_token
2023-05-14 21:36:54 +00:00
commands:
2023-05-15 09:56:21 +00:00
- git fetch origin
2023-05-15 10:04:42 +00:00
- git switch -c lang 2>/dev/null || git checkout origin/lang
2023-05-15 09:44:51 +00:00
- git config --global user.email drone@v0l.io
- git config --global user.name "Drone CI"
2023-05-15 09:35:48 +00:00
- git remote set-url origin https://drone:$TOKEN@git.v0l.io/Kieran/snort.git
2023-05-15 09:54:06 +00:00
- yarn install
- npx @crowdin/cli upload -b main -T $CTOKEN
- npx @crowdin/cli pull -b main -T $CTOKEN
- yarn workspace @snort/app format
2023-05-15 09:32:23 +00:00
- git diff
2023-05-14 21:15:34 +00:00
- git commit -a -m "Update translations"
2023-05-15 09:32:23 +00:00
- git push -u origin lang
2023-05-14 21:15:34 +00:00
---
kind: pipeline
type: kubernetes
2023-05-14 21:17:45 +00:00
name: docker
2023-05-14 21:15:34 +00:00
metadata:
namespace: git
steps:
- name: build docker image
image: r.j3ss.co/img
privileged: true
2023-05-14 21:26:57 +00:00
volumes:
- name: cache
path: /docker-cache
2023-05-14 21:15:34 +00:00
environment:
TOKEN:
from_secret: img_token
commands:
- img login -u kieran -p $TOKEN git.v0l.io
2023-05-15 09:15:12 +00:00
- |-
img build -t git.v0l.io/kieran/snort:latest \
2023-05-14 21:26:57 +00:00
--platform linux/amd64,linux/arm64 \
--cache-from "type=local,src=/docker-cache" \
--cache-to "type=local,dest=/docker-cache" \
.
- img push git.v0l.io/kieran/snort:latest
volumes:
- name: cache
claim:
2023-05-14 21:52:37 +00:00
name: docker-cache
---
kind: pipeline
type: kubernetes
name: test-lint
metadata:
namespace: git
steps:
- name: Test/Lint
image: node:current-bullseye
commands:
- yarn install
- yarn workspace @snort/nostr build
- yarn workspace @snort/app test
- yarn workspace @snort/app eslint
- yarn workspace @snort/app prettier --check .