File tree 1 file changed +4
-1
lines changed 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -487,7 +487,8 @@ jobs:
487
487
- << : *restore_cache
488
488
- << : *install_node_modules
489
489
- run : yarn markdown
490
- - run : sudo apt-get update && sudo apt-get install jq # jq is helpful for parsing json
490
+ # jq is helpful for parsing json & python required for node-gyp to build lmdb
491
+ - run : sudo apt-get update && sudo apt-get install jq python -y
491
492
- run : git config --global user.name "GatsbyJS Bot"
492
493
-
run :
git config --global user.email "[email protected] "
493
494
- run : sh ./scripts/publish-starters.sh "starters/*"
@@ -563,6 +564,8 @@ jobs:
563
564
default : " next"
564
565
steps :
565
566
- checkout
567
+ # python 2 is not built in and node-gyp needs it to build lmdb
568
+ - run : apt-get update && apt-get install python -y
566
569
- run :
567
570
name : " Update React to prerelease"
568
571
command : " REACT_CHANNEL=<< parameters.version >> node ./scripts/upgrade-react"
You can’t perform that action at this time.
0 commit comments