Skip to content

Commit

Permalink
remove gnu and add fedora
Browse files Browse the repository at this point in the history
Signed-off-by: gengjiawen <[email protected]>
  • Loading branch information
gengjiawen authored and gkrizek committed Mar 25, 2019
1 parent 1448c51 commit 5a480c8
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ aliases:
- &envinfo
name: Run envinfo
command: |
npm i -g envinfo && envinfo
npx envinfo
jobs:
ubuntu-test:
Expand All @@ -12,7 +12,7 @@ jobs:
- image: ubuntu
steps:
- checkout
- run: apt update && apt install gnupg -y # see https://github.com/nodesource/distributions/pull/758
- run: apt update
- run: bash deb/setup_11.x
- run: apt install nodejs -y
- run: *envinfo
Expand All @@ -22,7 +22,7 @@ jobs:
- image: debian
steps:
- checkout
- run: apt update && apt install gnupg -y # see https://github.com/nodesource/distributions/pull/758
- run: apt update
- run: bash deb/setup_11.x
- run: apt install nodejs -y
- run: *envinfo
Expand All @@ -35,6 +35,15 @@ jobs:
- run: bash rpm/setup_11.x
- run: yum install nodejs -y
- run: *envinfo
fedora-test:
working_directory: ~/repo
docker:
- image: fedora
steps:
- checkout
- run: bash rpm/setup_11.x
- run: dnf install nodejs -y
- run: *envinfo

workflows:
version: 2
Expand All @@ -43,3 +52,4 @@ workflows:
- ubuntu-test
- debian-test
- centos-test
- fedora-test

0 comments on commit 5a480c8

Please sign in to comment.