2020-12-23 15:26:52 +00:00
|
|
|
---
|
|
|
|
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
|
|
|
|
|
2021-01-13 14:39:10 +00:00
|
|
|
- name: make release build and push to docker hub
|
2020-12-23 15:26:52 +00:00
|
|
|
image: plugins/docker
|
|
|
|
settings:
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
repo: dessalines/lemmy-ui
|
2021-01-13 14:39:10 +00:00
|
|
|
auto_tag: true
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
2020-12-23 15:26:52 +00:00
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
- refs/tags/*
|
|
|
|
|
2021-01-13 17:18:21 +00:00
|
|
|
# TODO Disabling arm for now
|
|
|
|
# ---
|
|
|
|
# kind: pipeline
|
|
|
|
# name: arm64
|
2020-12-23 15:26:52 +00:00
|
|
|
|
2021-01-13 17:18:21 +00:00
|
|
|
# platform:
|
|
|
|
# os: linux
|
|
|
|
# arch: arm64
|
2020-12-23 15:26:52 +00:00
|
|
|
|
2021-01-13 17:18:21 +00:00
|
|
|
# steps:
|
2020-12-23 15:26:52 +00:00
|
|
|
|
2021-01-13 17:18:21 +00:00
|
|
|
# - name: fetch git submodules
|
|
|
|
# image: node:14-alpine
|
|
|
|
# commands:
|
|
|
|
# - apk add git
|
|
|
|
# - git submodule init
|
|
|
|
# - git submodule update --recursive --remote
|
2020-12-23 15:26:52 +00:00
|
|
|
|
2021-01-13 17:18:21 +00:00
|
|
|
# - name: make release build and push to docker hub
|
|
|
|
# image: plugins/docker
|
|
|
|
# settings:
|
|
|
|
# dockerfile: Dockerfile
|
|
|
|
# repo: dessalines/lemmy-ui
|
|
|
|
# auto_tag: true
|
|
|
|
# auto_tag_suffix: arm64
|
|
|
|
# username:
|
|
|
|
# from_secret: docker_username
|
|
|
|
# password:
|
|
|
|
# from_secret: docker_password
|
|
|
|
# when:
|
|
|
|
# ref:
|
|
|
|
# - refs/tags/*
|
2021-01-04 16:15:12 +00:00
|
|
|
|