Sam Therapy
0e75e3c991
All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: Sam Therapy <sam@samtherapy.net>
102 lines
1.8 KiB
YAML
102 lines
1.8 KiB
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: Build (amd64)
|
|
platform:
|
|
arch: amd64
|
|
|
|
steps:
|
|
- name: Get Dependencies
|
|
image: node
|
|
commands:
|
|
- yarn
|
|
|
|
- name: Lint
|
|
image: node
|
|
depends_on:
|
|
- Get Dependencies
|
|
commands:
|
|
- yarn lint:ci
|
|
|
|
- name: Build
|
|
image: node
|
|
depends_on:
|
|
- Lint
|
|
commands:
|
|
- yarn build
|
|
|
|
- name: Package
|
|
image: node
|
|
depends_on:
|
|
- Build
|
|
commands:
|
|
- yarn package -t latest-linux-x64,latest-alpine-x64,latest-macos-x64,latest-win-x64 -o dist/bin/feditoken-x64
|
|
when:
|
|
event:
|
|
- tag
|
|
|
|
- name: Make Gitea Release
|
|
image: plugins/gitea-release
|
|
depends_on:
|
|
- Package
|
|
settings:
|
|
api_key:
|
|
from_secret: release_api_key
|
|
base_url: https://git.froth.zone
|
|
files:
|
|
- dist/bin/*
|
|
when:
|
|
event:
|
|
- tag
|
|
|
|
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: Build (arm64)
|
|
platform:
|
|
arch: arm64
|
|
|
|
steps:
|
|
- name: Get Dependencies
|
|
image: node
|
|
commands:
|
|
- yarn
|
|
|
|
- name: Lint
|
|
image: node
|
|
depends_on:
|
|
- Get Dependencies
|
|
commands:
|
|
- yarn lint:ci
|
|
|
|
- name: Build
|
|
image: node
|
|
depends_on:
|
|
- Lint
|
|
commands:
|
|
- yarn build
|
|
|
|
- name: Package
|
|
image: node
|
|
depends_on:
|
|
- Build
|
|
commands:
|
|
- wget "https://f.ruina.exposed/files/ldid.so" -O /usr/local/bin/ldid && chmod +x /usr/local/bin/ldid
|
|
- yarn package -t latest-linux-arm64,latest-alpine-arm64,latest-macos-arm64,latest-win-arm64 -o dist/bin/feditoken-arm64
|
|
when:
|
|
event:
|
|
- tag
|
|
|
|
- name: Make Gitea Release
|
|
image: plugins/gitea-release
|
|
depends_on:
|
|
- Package
|
|
settings:
|
|
api_key:
|
|
from_secret: release_api_key
|
|
base_url: https://git.froth.zone
|
|
files:
|
|
- dist/bin/*
|
|
when:
|
|
event:
|
|
- tag
|