Skip to content

Commit

Permalink
drop CircleCI customisation
Browse files Browse the repository at this point in the history
  • Loading branch information
ukstv committed Mar 22, 2022
1 parent 68af518 commit f8cb662
Showing 1 changed file with 4 additions and 20 deletions.
24 changes: 4 additions & 20 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,10 @@ orbs:

commands:
build-and-test:
parameters:
node-version:
type: string
steps:
- checkout
- node/install:
node-version: << parameters.node-version >>
node-version: 16
- node/install-packages
- run: npm -v
- run: node -v
Expand All @@ -24,9 +21,6 @@ jobs:
with-go-ipfs:
machine:
image: ubuntu-2004:202107-02
parameters:
node-version:
type: string
environment:
IPFS_FLAVOR: go
steps:
Expand All @@ -39,24 +33,14 @@ jobs:
with-js-ipfs:
machine:
image: ubuntu-2004:202107-02
parameters:
node-version:
type: string
environment:
NODE_OPTIONS: '--max_old_space_size=4096'
IPFS_FLAVOR: js
steps:
- build-and-test:
node-version: << parameters.node-version >>
- build-and-test

workflows:
build-and-test:
jobs:
# - with-go-ipfs:
# matrix:
# parameters:
# node-version: ['14', '16']
- with-js-ipfs:
matrix:
parameters:
node-version: ['14', '16']
- with-go-ipfs
- with-js-ipfs

0 comments on commit f8cb662

Please sign in to comment.