Skip to content

Commit

Permalink
add --trace-deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
mmosca committed Dec 26, 2023
1 parent 54bb84d commit 73b5543
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
max_attempts: 3
retry_on: error
timeout_minutes: 20
command: node --max-old-space-size=4096 ./node_modules/gulp/bin/gulp.js clean && node --max-old-space-size=4096 ./node_modules/gulp/bin/gulp.js build
command: node --trace-deprecation --max-old-space-size=4096 ./node_modules/gulp/bin/gulp.js clean && node --trace-deprecation --max-old-space-size=4096 ./node_modules/gulp/bin/gulp.js build
#continue-on-error: true
- name: linux64 release
id: release1
Expand All @@ -57,7 +57,7 @@ jobs:
max_attempts: 3
retry_on: error
timeout_minutes: 20
command: node --max-old-space-size=4096 ./node_modules/gulp/bin/gulp.js release --platform=linux64 --installer
command: node --trace-deprecation --max-old-space-size=4096 ./node_modules/gulp/bin/gulp.js release --platform=linux64 --installer
#continue-on-error: true

- name: Upload deb
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
- name: Create apps folder
run: mkdir -p apps
- name: build macos release
run: node ./node_modules/gulp/bin/gulp.js release --platform=osx64 -LLLL
run: node --trace-deprecation ./node_modules/gulp/bin/gulp.js release --platform=osx64
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
Expand Down Expand Up @@ -160,7 +160,7 @@ jobs:
command: npm install
timeout_minutes: 10
- name: build win64 release
run: node ./node_modules/gulp/bin/gulp.js release --platform=win64 -LLLL --installer
run: node --trace-deprecation ./node_modules/gulp/bin/gulp.js release --platform=win64 --installer
- name: Upload msi
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 73b5543

Please sign in to comment.