Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
node-sqlite3
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
俞永鹏
node-sqlite3
Commits
e3ebdef0
Commit
e3ebdef0
authored
Oct 10, 2021
by
kewde
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci: run on all pushes, revert publish mechanism to default
parent
0e82fff2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
5 deletions
+3
-5
build-arm-bindings.yml
.github/workflows/build-arm-bindings.yml
+2
-4
BinaryBuilder.Dockerfile
BinaryBuilder.Dockerfile
+1
-1
No files found.
.github/workflows/build-arm-bindings.yml
View file @
e3ebdef0
name
:
Build ARM bindings
on
:
push
:
tags
:
-
"
v*"
on
:
[
push
]
jobs
:
build
:
...
...
@@ -44,6 +41,7 @@ jobs:
--no-cache \
--build-arg NODE_VERSION=${{ matrix.nodeVersion }} \
--build-arg VARIANT=${{ matrix.variant }} \
--build-arg COMMIT_MESSAGE=$(git show -s --format=%B $GITHUB_SHA | tr -d '\n')
--build-arg AWS_ACCESS_KEY_ID=${{ secrets.AWS_ACCESS_KEY_ID }} \
--build-arg AWS_SECRET_ACCESS_KEY=${{ secrets.AWS_SECRET_ACCESS_KEY }} \
.
...
...
BinaryBuilder.Dockerfile
View file @
e3ebdef0
...
...
@@ -15,6 +15,6 @@ RUN npm install --ignore-scripts
RUN npx node-pre-gyp install --build-from-source
RUN npm run test
RUN npx node-pre-gyp package
RUN if [
"$AWS_ACCESS_KEY_ID" = "SKIP" ] || [ "$AWS_SECRET_ACCESS_KEY" = "SKIP" ] ; then echo "SKIP S3 PUBLISH" ; else npx node-pre-gyp publish
; fi
RUN if [
[ ${COMMIT_MESSAGE} =~ "[publish binary]" ]] ; then npx node-pre-gyp publish ; else echo "SKIP S3 PUBLISH"
; fi
CMD ["sh"]
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment