Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
lacymorrow committed Nov 1, 2023
1 parent c8ce8fa commit 5f814f8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ orbs:
node: circleci/[email protected]

jobs:
build-linux: # this can be any name you choose
# build-linux: # this can be any name you choose
executor: node/default # use the default executor defined within the orb
steps:
- checkout
Expand Down Expand Up @@ -76,6 +76,9 @@ jobs:
# - run:
# name: Run tests
# command: yarn test || echo "There were test failures, this build may be sour."
- run:
name: Build and Publish - linux
command: npm run build:linux --openssl-fips=""
- run:
name: Build and Publish - windows
command: npm run build:windows $( [ "$CIRCLE_BRANCH" != "release" ] && printf %s '--publish-never' ) --openssl-fips=""
Expand All @@ -92,9 +95,6 @@ jobs:
# # Generate the snap token with 'snapcraft export-login --snaps crossover --channels edge,stable -'
# command: snapcraft login
# - run:
# name: Build and Publish - linux
# command: npm run build:linux --openssl-fips=""
# - run:
# name: Build and Publish - snap
# command: npm run build:snap $( [ "$CIRCLE_BRANCH" == "release" ] && printf %s '--publish-always' ) --openssl-fips=""
- run:
Expand Down Expand Up @@ -135,5 +135,5 @@ workflows:
- equal: [master, << pipeline.git.branch >>]
- equal: [release, << pipeline.git.branch >>]
jobs:
- build-linux
# - build-linux
- build-all

0 comments on commit 5f814f8

Please sign in to comment.