-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #620 from aerospike/Nodejs-Release-5.12.1
Nodejs release 5.12.1
- Loading branch information
Showing
19 changed files
with
579 additions
and
458 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 |
---|---|---|
|
@@ -94,7 +94,7 @@ jobs: | |
nodejs: [ | ||
["v108", 18], | ||
["v115", 20], | ||
["v120", 21] | ||
["v127", 22] | ||
] | ||
platform: [ | ||
"x86_64", | ||
|
@@ -166,7 +166,7 @@ jobs: | |
id: runcmd | ||
with: | ||
arch: aarch64 | ||
distro: ubuntu22.04 | ||
distro: ubuntu-22.04 | ||
|
||
# Set an output parameter `uname` for use in subsequent steps | ||
run: | | ||
|
@@ -175,7 +175,7 @@ jobs: | |
./scripts/build-c-client.sh | ||
wget https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash; | ||
source ~/.bashrc; | ||
nvm i 20 | ||
nvm i 22 | ||
npm install | ||
- name: Build client x64 | ||
|
@@ -215,9 +215,9 @@ jobs: | |
nodejs: [ | ||
["v108", 18], | ||
["v115", 20], | ||
["v120", 21] | ||
["v127", 22] | ||
] | ||
runs-on: macos-latest | ||
runs-on: macos-13 | ||
steps: | ||
- name: Show job status for commit | ||
uses: myrotvorets/[email protected] | ||
|
@@ -301,7 +301,7 @@ jobs: | |
# nodejs-version: [ | ||
# ["v108", "18"], | ||
# ["v115", "20"], | ||
# ["v120", "21"], | ||
# ["v127", 22] | ||
# ] | ||
# fail-fast: false | ||
# steps: | ||
|
@@ -413,7 +413,7 @@ jobs: | |
# context: "Build bindings (${{ matrix.nodejs-version[0] }}-macosx_arm64)" | ||
|
||
test-npm-install: | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
needs: [manylinux, macOS-x86] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
@@ -430,16 +430,22 @@ jobs: | |
- name: Modify the package.json | ||
run: | | ||
sudo npm install -g json | ||
json -I -f package.json -e "this.scripts.install=\"npm-run-all removeExtraBinaries build\"" | ||
- name: Modify the package.json | ||
run: | | ||
sudo npm install -g json | ||
json -I -f package.json -e "this.scripts.install=\"npm-run-all removeExtraBinaries build\"" | ||
- name: Run tests | ||
run: | | ||
mkdir -p testDir | ||
cd testDir | ||
pwd | ||
sudo npm install .. | ||
test-yarn-install: | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
needs: [manylinux, macOS-x86] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
@@ -467,7 +473,7 @@ jobs: | |
yarn add link:.. | ||
test-pnpm-install: | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
needs: [manylinux, macOS-x86] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
@@ -524,7 +530,7 @@ jobs: | |
bun link aerospike | ||
test-typescript-install: | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
needs: [manylinux, macOS-x86] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
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 |
---|---|---|
|
@@ -26,11 +26,11 @@ runs: | |
|
||
# - uses: actions/download-artifact@v4 | ||
# with: | ||
# name: v120-macosx_aarch64.build | ||
# name: v127-macosx_aarch64.build | ||
|
||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: v120-macosx_x86_64.build | ||
name: v127-macosx_x86_64.build | ||
|
||
- uses: actions/download-artifact@v4 | ||
with: | ||
|
@@ -50,32 +50,31 @@ runs: | |
|
||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: v120-manylinux_x86_64.build | ||
name: v127-manylinux_x86_64.build | ||
|
||
# - uses: actions/download-artifact@v4 | ||
# with: | ||
# name: v120-manylinux_aarch64.build | ||
# name: v127-manylinux_aarch64.build | ||
|
||
- name: Install client | ||
shell: bash | ||
run: | | ||
mkdir -p lib/binding/node-v108-darwin-arm64 lib/binding/node-v115-darwin-arm64 lib/binding/node-v120-darwin-arm64 | ||
mkdir -p lib/binding/openssl@3/node-v108-linux-arm64 lib/binding/openssl@3/node-v115-linux-arm64 lib/binding/openssl@3/node-v120-linux-arm64 | ||
mkdir -p lib/binding/openssl@1/node-v108-linux-arm64 lib/binding/openssl@1/node-v115-linux-arm64 lib/binding/openssl@1/node-v120-linux-arm64 | ||
mkdir -p lib/binding/openssl@1/node-v108-linux-x64 lib/binding/openssl@1/node-v115-linux-x64 lib/binding/openssl@1/node-v120-linux-x64 | ||
cp -r node-v108-linux-x64 lib/binding/openssl@3/node-v108-linux-x64 | ||
cp -r node-v115-linux-x64 lib/binding/openssl@3/node-v115-linux-x64 | ||
cp -r node-v120-linux-x64 lib/binding/openssl@3/node-v120-linux-x64 | ||
mkdir -p lib/binding/node-v108-darwin-arm64 lib/binding/node-v115-darwin-arm64 lib/binding/node-v127-darwin-arm64 | ||
mkdir -p lib/binding/[email protected]/node-v108-linux-arm64 lib/binding/[email protected]/node-v115-linux-arm64 lib/binding/[email protected]/node-v127-linux-arm64 | ||
mkdir -p lib/binding/[email protected]/node-v108-linux-arm64 lib/binding/[email protected]/node-v115-linux-arm64 lib/binding/[email protected]/node-v127-linux-arm64 | ||
mkdir -p lib/binding/[email protected]/node-v108-linux-arm64 lib/binding/[email protected]/node-v115-linux-arm64 lib/binding/[email protected]/node-v127-linux-arm64 | ||
mkdir -p lib/binding/[email protected]/node-v108-linux-x64 lib/binding/[email protected]/node-v115-linux-x64 lib/binding/[email protected]/node-v127-linux-x64 | ||
mkdir -p lib/binding/[email protected]/node-v108-linux-x64 lib/binding/[email protected]/node-v115-linux-x64 lib/binding/[email protected]/node-v127-linux-x64 | ||
mkdir -p lib/binding/[email protected]/node-v108-linux-x64 lib/binding/[email protected]/node-v115-linux-x64 lib/binding/[email protected]/node-v127-linux-x64 | ||
cp -r node-v108-linux-x64 lib/binding/[email protected]/ | ||
cp -r node-v115-linux-x64 lib/binding/[email protected]/ | ||
cp -r node-v127-linux-x64 lib/binding/[email protected]/ | ||
cp -r node-v108-darwin-x64 lib/binding/node-v108-darwin-x64 | ||
cp -r node-v115-darwin-x64 lib/binding/node-v115-darwin-x64 | ||
cp -r node-v120-darwin-x64 lib/binding/node-v120-darwin-x64 | ||
cp -r node-v127-darwin-x64 lib/binding/node-v127-darwin-x64 | ||
# cp -r node-v108-linux-arm64 lib/binding/node-v108-linux-arm64 | ||
# cp -r node-v115-linux-arm64 lib/binding/node-v115-linux-arm64 | ||
# cp -r node-v120-linux-arm64 lib/binding/node-v120-linux-arm64 | ||
# cp -r node-v127-linux-arm64 lib/binding/node-v127-linux-arm64 | ||
# cp -r node-v108-darwin-arm64 lib/binding/node-v108-darwin-arm64 | ||
# cp -r node-v115-darwin-arm64 lib/binding/node-v115-darwin-arm64 | ||
# cp -r node-v120-darwin-arm64 lib/binding/node-v120-darwin-arm64 | ||
|
||
|
||
|
||
# cp -r node-v127-darwin-arm64 lib/binding/node-v127-darwin-arm64 |
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
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
Submodule aerospike-client-c
updated
12 files
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
Oops, something went wrong.