Bypass often-corrupt node_modules/.bin/grunt.cmd on windows (#1481)

FREEBIE
pull/749/head
Scott Nonnenberg 7 years ago
parent c2c9cd0aa2
commit c6d461c579
No known key found for this signature in database
GPG Key ID: A4931C09644C654B

@ -10,19 +10,18 @@ install:
- set PATH=C:\Ruby23-x64\bin;%PATH%
- ps: Install-Product node 6 x64
- yarn install
- type node_modules\.bin\grunt.cmd
build_script:
- yarn run icon-gen
- del /f images\emoji\apple
- mkdir images\emoji\apple
- xcopy /Q components\emojidata\img-apple-64 images\emoji\apple
- node_modules\.bin\grunt
- node build\grunt.js
- node_modules\.bin\build --em.environment=%SIGNAL_ENV% --publish=never
test_script:
- node_modules\.bin\grunt test-release:win
- node_modules\.bin\grunt test
- node build\grunt.js test-release:win
- node build\grunt.js test
artifacts:
- path: dist/*.*

@ -0,0 +1,2 @@
// because grunt.cmd is totally flakey on windows
require('grunt').cli();
Loading…
Cancel
Save