Skip to content
This repository was archived by the owner on May 23, 2021. It is now read-only.

Add Alpine build step #38

Closed
wants to merge 5 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,14 @@ steps:
- yarn
- ARCH=amd64 ./scripts/ci.bash

- name: build-alpine
image: node:12-alpine
commands:
- apk add build-base ccache
- yarn
- ARCH=amd64 ./scripts/ci.bash


- name: rebuild-cache
image: codercom/drone-volume-cache:amd64
volumes:
Expand Down Expand Up @@ -69,6 +77,13 @@ steps:
- yarn
- ARCH=arm64 ./scripts/ci.bash

- name: build-alpine
image: node:12-alpine
commands:
- apk add build-base ccache
- yarn
- ARCH=amd64 ./scripts/ci.bash

- name: rebuild-cache
image: codercom/drone-volume-cache:arm64
volumes:
Expand Down