Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Commit

Permalink
arm 32
Browse files Browse the repository at this point in the history
  • Loading branch information
xzyfer committed Apr 27, 2019
1 parent dcab74c commit 9e95ea3
Showing 1 changed file with 109 additions and 0 deletions.
109 changes: 109 additions & 0 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,3 +107,112 @@ steps:
volumes:
- name: vendor
temp: {}
---
kind: pipeline
name: node8-armv8

platform:
os: linux
arch: arm

steps:
- name: build
image: armv8/node:8
volumes:
- name: vendor
path: /tmp/vendor
commands:
- export SKIP_SASS_BINARY_DOWNLOAD_FOR_CI="true"
- env
- node -v
- npm -v
- gcc --version
- g++ --version
- npm install --unsafe-perm
- npm test
- cp -R /drone/src/vendor /tmp
- ls -lsa /tmp/vendor
volumes:
- name: vendor
temp: {}
---
kind: pipeline
name: node10-armv8

platform:
os: linux
arch: arm

steps:
- name: build
image: armv8/node:10
volumes:
- name: vendor
path: /tmp/vendor
commands:
- export SKIP_SASS_BINARY_DOWNLOAD_FOR_CI="true"
- node -v
- npm -v
- gcc --version
- g++ --version
- npm install --unsafe-perm
- npm test
- cp -R /drone/src/vendor /tmp
- ls -lsa /tmp/vendor
volumes:
- name: vendor
temp: {}
---
kind: pipeline
name: node11-armv8

platform:
os: linux
arch: arm

steps:
- name: build
image: armv8/node:11
volumes:
- name: vendor
path: /tmp/vendor
commands:
- export SKIP_SASS_BINARY_DOWNLOAD_FOR_CI="true"
- node -v
- npm -v
- gcc --version
- g++ --version
- npm install --unsafe-perm
- npm test
- cp -R /drone/src/vendor /tmp
- ls -lsa /tmp/vendor
volumes:
- name: vendor
temp: {}
---
kind: pipeline
name: node12-armv8

platform:
os: linux
arch: arm

steps:
- name: build
image: armv8/node:12
volumes:
- name: vendor
path: /tmp/vendor
commands:
- export SKIP_SASS_BINARY_DOWNLOAD_FOR_CI="true"
- node -v
- npm -v
- gcc --version
- g++ --version
- npm install --unsafe-perm
- npm test
- cp -R /drone/src/vendor /tmp
- ls -lsa /tmp/vendor
volumes:
- name: vendor
temp: {}

0 comments on commit 9e95ea3

Please sign in to comment.