From 1913d04a4254cfc650525a505de6a282473da099 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Sun, 14 Mar 2021 10:20:30 -0400 Subject: [PATCH] Testing out a drone build. --- .drone.yml | 115 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 115 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..1b6e4c9 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,115 @@ +--- +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: make release build and push to docker hub + image: plugins/docker + settings: + dockerfile: Dockerfile + repo: dessalines/joinlemmy-site + auto_tag: true + auto_tag_suffix: linux-amd64 + username: + from_secret: docker_username + password: + from_secret: docker_password + when: + ref: + - refs/tags/* + + - name: push to docker manifest + image: plugins/manifest + settings: + username: + from_secret: docker_username + password: + from_secret: docker_password + target: "dessalines/joinlemmy-site:${DRONE_TAG}" + template: "dessalines/joinlemmy-site:${DRONE_TAG}-OS-ARCH" + platforms: + - linux/amd64 + - linux/arm64 + ignore_missing: true + when: + ref: + - refs/tags/* + +--- +kind: pipeline +name: arm64 + +platform: + os: linux + arch: arm64 + +steps: + + - name: fetch git submodules + image: node:14-alpine + commands: + - apk add git + - git submodule init + - git submodule update --recursive --remote + when: + ref: + - refs/tags/* + + - name: make release build and push to docker hub + image: plugins/docker + settings: + dockerfile: Dockerfile + repo: dessalines/joinlemmy-site + auto_tag: true + auto_tag_suffix: linux-arm64 + username: + from_secret: docker_username + password: + from_secret: docker_password + when: + ref: + - refs/tags/* + + - name: push to docker manifest + image: plugins/manifest + settings: + username: + from_secret: docker_username + password: + from_secret: docker_password + target: "dessalines/joinlemmy-site:${DRONE_TAG}" + template: "dessalines/joinlemmy-site:${DRONE_TAG}-OS-ARCH" + platforms: + - linux/amd64 + - linux/arm64 + ignore_missing: true + when: + ref: + - refs/tags/*