generated from sindresorhus/electron-boilerplate
-
-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c8ce8fa
commit 5f814f8
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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="" | ||
|
@@ -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: | ||
|
@@ -135,5 +135,5 @@ workflows: | |
- equal: [master, << pipeline.git.branch >>] | ||
- equal: [release, << pipeline.git.branch >>] | ||
jobs: | ||
- build-linux | ||
# - build-linux | ||
- build-all |