Browse Source

Fixing the broken pipeline

pull/9/head
Drew Short 4 years ago
parent
commit
14a896ac10
  1. 2
      Dockerfile
  2. 33
      pipeline.yml

2
Dockerfile

@ -1,4 +1,4 @@
FROM node:12-14-stretch
FROM node:12.14-stretch
COPY . /opt/baphomet
RUN npm install
WORKDIR /opt/baphomet

33
pipeline.yml

@ -8,6 +8,14 @@ resources:
private_key: |
((pull_key))
branch: master
- name: baphomet-js-git-develop
type: git
icon: git
source:
uri: ssh://git@git.nulloctet.com:8437/warricksothr/baphomet-js.git
private_key: |
((pull_key))
branch: develop
jobs:
- name: test
@ -20,7 +28,7 @@ jobs:
platform: linux
image_resource:
type: registry-image
source: { repository: node, tag: "12-14-stretch" }
source: { repository: node, tag: "12.14-stretch" }
inputs:
- name: baphomet-js-git
run:
@ -33,6 +41,29 @@ jobs:
cd baphomet-js-git
npm install
npm test
- name: test-develop
public: true
plan:
- get: baphomet-js-git-develop
trigger: true
- task: run-tests
config:
platform: linux
image_resource:
type: registry-image
source: { repository: node, tag: "12.14-stretch" }
inputs:
- name: baphomet-js-git-develop
run:
path: /bin/sh
args:
- -c
- |
echo "Node Version: $(node --version)"
echo "NPM Version: $(npm --version)"
cd baphomet-js-git-develop
npm install
npm test
- name: package
public: true
plan:

Loading…
Cancel
Save