Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
lacymorrow committed Oct 26, 2023
1 parent d2f88ec commit 9abdc4f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
17 changes: 8 additions & 9 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,8 @@ jobs:
- run:
command: yarn build:rpm
name: Build app
- persist_to_workspace:
root: ~/project
paths: .
- store_artifacts:
path: dist/CrossOver*

# Below is the definition of your job to build and test your app, you can rename and customize it as you want.
build-all:
Expand All @@ -48,12 +47,12 @@ jobs:
install-yarn: true
node-version: "16.20.0"
# AT SOME POINT YARN INSTALL BROKE FOR NO REASON, TRY SWITCHING BACK TO YARN TO SEE IF IT WORKS
# - node/install-packages:
# # If you are using yarn, change the line below from "npm" to "yarn"
# pkg-manager: yarn
- run:
name: Install Node modules
command: npm i --openssl-fips=''
- node/install-packages:
# If you are using yarn, change the line below from "npm" to "yarn"
pkg-manager: yarn
# - run:
# name: Install Node modules
# command: npm i --openssl-fips=''
- run:
name: Brew Clean
command: rm '/usr/local/lib/python3.9/site-packages/six.py'
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
image: Visual Studio 2017
image: Visual Studio 2019

matrix:
fast_finish: true
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"build:all": "electron-builder -mwl --ia32 --x64",
"build:mac": "electron-builder --macos --arm64 --x64",
"build:linux": "electron-builder --linux --ia32 --x64",
"build:windows": "electron-builder --win --ia32 --x64",
"build:windows": "electron-builder --win --x64",
"build:windows:appx": "electron-builder --win appx",
"build:windows:exe": "electron-builder -c electron-builder-windows.yaml --win",
"build:wl": "electron-builder -wl --ia32 --x64",
Expand Down

0 comments on commit 9abdc4f

Please sign in to comment.