mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-22 12:21:13 +00:00
Merge remote-tracking branch 'origin/drone-ci' into drone-ci-dess
This commit is contained in:
commit
b0f050bd99
2 changed files with 76 additions and 1 deletions
75
.drone.yml
Normal file
75
.drone.yml
Normal file
|
@ -0,0 +1,75 @@
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
name: amd64
|
||||||
|
|
||||||
|
platform:
|
||||||
|
os: linux
|
||||||
|
arch: amd64
|
||||||
|
|
||||||
|
steps:
|
||||||
|
|
||||||
|
- name: fetch git submodules
|
||||||
|
image: node:14-alpine
|
||||||
|
commands:
|
||||||
|
- apk add git
|
||||||
|
- git submodule init
|
||||||
|
- git submodule update --recursive --remote
|
||||||
|
|
||||||
|
- name: yarn
|
||||||
|
image: node:14-alpine
|
||||||
|
commands:
|
||||||
|
- yarn
|
||||||
|
|
||||||
|
- name: yarn lint
|
||||||
|
image: node:14-alpine
|
||||||
|
commands:
|
||||||
|
- yarn lint
|
||||||
|
|
||||||
|
- name: yarn build:dev
|
||||||
|
image: node:14-alpine
|
||||||
|
commands:
|
||||||
|
- yarn build:dev
|
||||||
|
|
||||||
|
- name: create docker tags
|
||||||
|
image: node:14-alpine
|
||||||
|
commands:
|
||||||
|
- echo "$(git describe),latest" > .tags
|
||||||
|
when:
|
||||||
|
ref:
|
||||||
|
- refs/tags/*
|
||||||
|
|
||||||
|
- name: try to make a build
|
||||||
|
image: plugins/docker
|
||||||
|
settings:
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
repo: dessalines/lemmy-ui
|
||||||
|
when:
|
||||||
|
ref:
|
||||||
|
- refs/tags/*
|
||||||
|
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
name: arm64
|
||||||
|
|
||||||
|
platform:
|
||||||
|
os: linux
|
||||||
|
arch: arm64
|
||||||
|
|
||||||
|
steps:
|
||||||
|
|
||||||
|
- name: create docker tags
|
||||||
|
image: node:14-alpine
|
||||||
|
commands:
|
||||||
|
- echo "$(git describe),latest" > .tags
|
||||||
|
when:
|
||||||
|
ref:
|
||||||
|
- refs/tags/*
|
||||||
|
|
||||||
|
- name: try to make a build
|
||||||
|
image: plugins/docker
|
||||||
|
settings:
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
repo: dessalines/lemmy-ui
|
||||||
|
#when:
|
||||||
|
# ref:
|
||||||
|
# - refs/tags/*
|
|
@ -8,7 +8,7 @@
|
||||||
"build:prod": "webpack --mode=production",
|
"build:prod": "webpack --mode=production",
|
||||||
"clean": "yarn run rimraf dist",
|
"clean": "yarn run rimraf dist",
|
||||||
"dev": "yarn start",
|
"dev": "yarn start",
|
||||||
"lint": "tsc --noEmit && eslint --report-unused-disable-directives --ext .js,.ts,.tsx src",
|
"lint": "node generate_translations.js && tsc --noEmit && eslint --report-unused-disable-directives --ext .js,.ts,.tsx src",
|
||||||
"prebuild:dev": "yarn clean && node generate_translations.js",
|
"prebuild:dev": "yarn clean && node generate_translations.js",
|
||||||
"prebuild:prod": "yarn clean && node generate_translations.js",
|
"prebuild:prod": "yarn clean && node generate_translations.js",
|
||||||
"start": "yarn build:dev --watch"
|
"start": "yarn build:dev --watch"
|
||||||
|
|
Loading…
Reference in a new issue