Skip to content

Commit

Permalink
tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
lacymorrow committed Nov 1, 2023
1 parent 8efb0c3 commit ef7e9c5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 19 deletions.
24 changes: 7 additions & 17 deletions .github/workflows/crossover-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ jobs:
crossover-ci-mac:
runs-on: macos-latest
steps:
# install Bun
- uses: oven-sh/setup-bun@v1

# Make sure build is clean and no files from a previous run are re-used.
- name: Cleanup files before run
run: |
Expand All @@ -27,9 +24,7 @@ jobs:
run: |
sysctl -n machdep.cpu.brand_string
vm_stat | perl -ne '/page size of (\d+)/ and $size=$1; /Pages\s+([^:]+)[^\d]+(\d+)/ and printf("%-16s % 16.2f Mi\n", "$1:", $2 * $size / 1048576);'
# - name: Install Tools
# run: |
# brew install jq
- name: Get Node Version
run: |
cat .nvmrc
Expand All @@ -50,18 +45,18 @@ jobs:
echo "yarn: $(yarn --version)"
npm install --openssl_fips=""
# - name: Lint
# run: npm run lint
- name: Lint
run: npm run lint

# - name: Check Dependencies
# run: npm run depcheck
- name: Check Dependencies
run: npm run depcheck

# - name: Unpackaged Test 🧪
# run: npm run test

- name: Build
run: |
npm run build:mac
npm run build:mac --openssl_fips=""
env:
# Set CI flag to false, or the build fails on all warnings, not just errors as locally.
CI: false
Expand Down Expand Up @@ -130,12 +125,6 @@ jobs:
yarn --version
npm install
- name: Lint
run: npm run lint

- name: Check Dependencies
run: npm run depcheck

# - name: Unpackaged Test 🧪
# run: npm run test

Expand All @@ -144,6 +133,7 @@ jobs:
npm run build:windows
env:
# Set CI flag to false, or the build fails on all warnings, not just errors as locally.
# We use circle as ci
CI: false

# - name: Package
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -134,10 +134,9 @@
"darkModeSupport": true
},
"dmg": {
"iconSize": 160,
"contents": [
{
"x": 180,
"x": 170,
"y": 170
},
{
Expand Down

0 comments on commit ef7e9c5

Please sign in to comment.