-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Test building arm bindings * Fix OS * Build project inside arm64 image * Combine arm64 build & copy steps * Load arm64 image into docker * Build arm for all docker versions * Disable engine checks * Test also for Node 17 * Skip Node v17 for arm Co-authored-by: Cayman <caymannava@gmail.com>
- Loading branch information
1 parent
35820ec
commit 7c669b2
Showing
3 changed files
with
60 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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 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,11 @@ | ||
# This is used to build bindings for arm64 | ||
|
||
ARG NODE_VERSION | ||
FROM node:${NODE_VERSION} | ||
|
||
RUN apt install -y python3 g++ make | ||
# && ln -sf python3 /usr/bin/python | ||
COPY . . | ||
|
||
RUN yarn config set ignore-engines true | ||
RUN yarn bootstrap |
This file contains 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