Skip to content

Commit

Permalink
chore: fix winci [republish binary]
Browse files Browse the repository at this point in the history
  • Loading branch information
yocontra committed Apr 27, 2021
1 parent e0e7a53 commit 123c2fb
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
18 changes: 11 additions & 7 deletions ROADMAP.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
# v3.0.0
# v3.0.0 [Finishing Cleanup]

- Switch from nan to N-API
- Normalize the build system for this package to match more recent native modules like node-sqlite
- Switch off of G++ to Clang for all CI work
- Improve performance by reducing parse/serialize flows
- `Geometry.toObject()`
- `Geometry.fromGeoJson()`
- Build out an async API
- Add a streaming API for parsing files
- Find a way to keep the dependency source code out of the repository to reduce noise
- Reduce the manual patching done in the gdal format gyp files
- Move from Travis-CI to CircleCI

# v4.0.0 [New Features]

- Automate dependency updates and prebuilt binaries for new node releases
- It would be nice if we had a bot that did this weekly
- Find a way to keep the dependency source code out of the repository to reduce noise
- Build out an async API
- Add a streaming API for parsing files
- Improve performance by reducing parse/serialize flows
- `Geometry.toObject()`
- `Geometry.fromGeoJson()`
4 changes: 2 additions & 2 deletions scripts/winci.bat
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ SET CM=%APPVEYOR_REPO_COMMIT_MESSAGE%
ECHO packaging ...
CALL node_modules\.bin\node-pre-gyp package %TOOLSET_ARGS%
IF %ERRORLEVEL% NEQ 0 ECHO error during packaging && GOTO ERROR
IF NOT "%CM%" == "%CM:[publish binary]=%" (ECHO publishing... && CALL node_modules\.bin\node-pre-gyp publish --msvs_version=%msvs_version% publish %TOOLSET_ARGS%) ELSE (ECHO not publishing)
IF NOT "%CM%" == "%CM:[publish binary]=%" (ECHO publishing... && CALL node_modules\.bin\node-pre-gyp --msvs_version=%msvs_version% publish %TOOLSET_ARGS%) ELSE (ECHO not publishing)
IF %ERRORLEVEL% NEQ 0 GOTO ERROR
IF NOT "%CM%" == "%CM:[republish binary]=%" (ECHO republishing ... && CALL node_modules\.bin\node-pre-gyp unpublish publish --msvs_version=%msvs_version% publish %TOOLSET_ARGS%) ELSE (ECHO not republishing)
IF NOT "%CM%" == "%CM:[republish binary]=%" (ECHO republishing ... && CALL node_modules\.bin\node-pre-gyp --msvs_version=%msvs_version% unpublish publish %TOOLSET_ARGS%) ELSE (ECHO not republishing)
IF %ERRORLEVEL% NEQ 0 GOTO ERROR
GOTO DONE
:ERROR
Expand Down

0 comments on commit 123c2fb

Please sign in to comment.