mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2025-02-25 18:55:28 -06:00
remove extra node version parameters
This commit is contained in:
14
.github/workflows/preview.yml
vendored
14
.github/workflows/preview.yml
vendored
@@ -17,13 +17,10 @@ jobs:
|
|||||||
|
|
||||||
- name: checkout repo
|
- name: checkout repo
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
with:
|
|
||||||
node-version: '16'
|
|
||||||
|
|
||||||
- name: setup java
|
- name: setup java
|
||||||
uses: actions/setup-java@v3
|
uses: actions/setup-java@v3
|
||||||
with:
|
with:
|
||||||
node-version: '16'
|
|
||||||
distribution: 'temurin'
|
distribution: 'temurin'
|
||||||
java-version: '17'
|
java-version: '17'
|
||||||
java-package: jdk
|
java-package: jdk
|
||||||
@@ -46,7 +43,6 @@ jobs:
|
|||||||
- name: Cache Maven packages
|
- name: Cache Maven packages
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v2
|
||||||
with:
|
with:
|
||||||
node-version: '16'
|
|
||||||
path: ~/.m2
|
path: ~/.m2
|
||||||
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
|
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
|
||||||
restore-keys: ${{ runner.os }}-m2
|
restore-keys: ${{ runner.os }}-m2
|
||||||
@@ -64,20 +60,16 @@ jobs:
|
|||||||
|
|
||||||
- name: Setup docker buildx
|
- name: Setup docker buildx
|
||||||
uses: docker/setup-buildx-action@v1
|
uses: docker/setup-buildx-action@v1
|
||||||
with:
|
|
||||||
node-version: '16'
|
|
||||||
|
|
||||||
- name: docker hub login
|
- name: docker hub login
|
||||||
uses: docker/login-action@v1
|
uses: docker/login-action@v1
|
||||||
with:
|
with:
|
||||||
node-version: '16'
|
|
||||||
username: ${{ secrets.DOCKER_USERNAME }}
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
|
|
||||||
- name: docker test build
|
- name: docker test build
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v2
|
||||||
with:
|
with:
|
||||||
node-version: '16'
|
|
||||||
context: .
|
context: .
|
||||||
file: Dockerfile
|
file: Dockerfile
|
||||||
pull: true
|
pull: true
|
||||||
@@ -99,7 +91,6 @@ jobs:
|
|||||||
- name: upload artifacts
|
- name: upload artifacts
|
||||||
uses: actions/upload-artifact@v1
|
uses: actions/upload-artifact@v1
|
||||||
with:
|
with:
|
||||||
node-version: '16'
|
|
||||||
name: binaries
|
name: binaries
|
||||||
path: staging
|
path: staging
|
||||||
|
|
||||||
@@ -136,7 +127,6 @@ jobs:
|
|||||||
- name: docker push to hub
|
- name: docker push to hub
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v2
|
||||||
with:
|
with:
|
||||||
node-version: '16'
|
|
||||||
context: .
|
context: .
|
||||||
platforms: linux/amd64,linux/arm64
|
platforms: linux/amd64,linux/arm64
|
||||||
file: Dockerfile
|
file: Dockerfile
|
||||||
@@ -150,7 +140,6 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
node-version: '16'
|
|
||||||
tag_name: ${{ env.PREVIEW_VERSION }}
|
tag_name: ${{ env.PREVIEW_VERSION }}
|
||||||
release_name: Release ${{ env.PREVIEW_VERSION }}
|
release_name: Release ${{ env.PREVIEW_VERSION }}
|
||||||
draft: false
|
draft: false
|
||||||
@@ -163,7 +152,6 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
node-version: '16'
|
|
||||||
upload_url: ${{ steps.create_github_release.outputs.upload_url }}
|
upload_url: ${{ steps.create_github_release.outputs.upload_url }}
|
||||||
asset_path: nb5/target/nb5.jar
|
asset_path: nb5/target/nb5.jar
|
||||||
asset_name: nb5.jar
|
asset_name: nb5.jar
|
||||||
@@ -175,7 +163,6 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
node-version: '16'
|
|
||||||
upload_url: ${{ steps.create_github_release.outputs.upload_url }}
|
upload_url: ${{ steps.create_github_release.outputs.upload_url }}
|
||||||
asset_path: nb5/target/nb5
|
asset_path: nb5/target/nb5
|
||||||
asset_name: nb5
|
asset_name: nb5
|
||||||
@@ -185,7 +172,6 @@ jobs:
|
|||||||
if: always()
|
if: always()
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
node-version: '16'
|
|
||||||
name: test-results
|
name: test-results
|
||||||
path: |
|
path: |
|
||||||
[a-zA-Z]**/logs/*
|
[a-zA-Z]**/logs/*
|
||||||
|
|||||||
Reference in New Issue
Block a user