This repository was archived by the owner on Dec 1, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 173
Cross compile armv7 (for RPI) #584
Merged
Merged
Changes from 10 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
6df3ca6
Temporarily move to master branch of ahdinosaur/prebuildify
acdb536
Temporarily move to vweevers/node-gyp-build#libc-and-arm-flavors
6f60523
Print out environment on AppVeyor
f011b92
Temporarily switch to ralphtheninja/prebuildify#PREBUILD_PLATFORM
26c550b
Upgrade node-gyp-build (should be complete now)
0aaacb9
Use prebuildify#override-platform
53cf593
Try cross compiling for armv7
419350c
Pass all arguments to prebuildify after --
04b3b8e
More explicit script name for cross compiling armv7
b4a0ef8
Move out prebuild logic into script
2a199c8
5.0.0-1-armv7
66d1d3d
Move back into .travis.yml
3e89b4e
5.0.0-1-armv7-2
8621798
Revert temporary version
61ffb7c
Remove temporary SET command from appveyor
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| #!/bin/bash | ||
|
|
||
| set -ex | ||
|
vweevers marked this conversation as resolved.
Outdated
|
||
|
|
||
| if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then | ||
| ARCHIVE_NAME="${TRAVIS_TAG:-latest}-linux-and-cross-compiled.tar" | ||
| elif [[ "$TRAVIS_OS_NAME" == "osx" ]]; then | ||
| ARCHIVE_NAME="${TRAVIS_TAG:-latest}-osx-`uname -m`.tar" | ||
| fi | ||
|
|
||
| npm run prebuild | ||
|
|
||
| if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then | ||
| npm run prebuildify-cross-armv7 | ||
| fi | ||
|
|
||
| tar --create --verbose --file="$ARCHIVE_NAME" --directory "$TRAVIS_BUILD_DIR/prebuilds" . | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.