This repository has been archived by the owner on Aug 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 463
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 #903 from EOSIO/merging_master
Merging master into release/21.0.x
- Loading branch information
Showing
10 changed files
with
273 additions
and
63 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
version: 2 | ||
updates: | ||
|
||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
target-branch: "master" | ||
|
||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
target-branch: "develop" | ||
|
||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
target-branch: "release/21.0.x" | ||
|
||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
target-branch: "release/22.0.x" | ||
|
||
- package-ecosystem: "npm" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
target-branch: "develop" | ||
|
||
- package-ecosystem: "npm" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
target-branch: "release/21.0.x" | ||
|
||
- package-ecosystem: "npm" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
target-branch: "release/22.0.x" |
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,35 @@ | ||
name: Build Docker - Develop | ||
on: | ||
schedule: | ||
- cron: "0 2 * * *" | ||
|
||
jobs: | ||
build-docker: | ||
name: Build Docker - Develop | ||
runs-on: ubuntu-18.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f | ||
with: | ||
ref: develop | ||
token: ${{ github.token }} | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@6520a2d2cb6db42c90c297c8025839c98e531268 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@2a4b53665e15ce7d7049afb11ff1f70ff1610609 | ||
- name: Login to DockerHub | ||
uses: docker/login-action@f3364599c6aa293cdc2b8391b1b56d0c30e45c8a | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- name: Build and push | ||
uses: docker/build-push-action@e1b7f96249f2e4c8e4ac1519b9608c0d48944a1f | ||
with: | ||
context: ./.github/eosjs-ci | ||
file: ./.github/eosjs-ci/Dockerfile | ||
pull: true | ||
push: true | ||
no-cache: true | ||
tags: | | ||
eosio/eosjs-ci:develop | ||
eosio/eosjs-ci:${{ github.sha }} |
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,38 @@ | ||
name: Build Docker - Release | ||
on: | ||
schedule: | ||
- cron: "0 2 * * *" | ||
|
||
jobs: | ||
build-docker: | ||
name: Build Docker - Release | ||
runs-on: ubuntu-18.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f | ||
with: | ||
ref: release/22.0.x | ||
token: ${{ github.token }} | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@6520a2d2cb6db42c90c297c8025839c98e531268 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@2a4b53665e15ce7d7049afb11ff1f70ff1610609 | ||
- name: Login to DockerHub | ||
uses: docker/login-action@f3364599c6aa293cdc2b8391b1b56d0c30e45c8a | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- name: Build and push | ||
uses: docker/build-push-action@e1b7f96249f2e4c8e4ac1519b9608c0d48944a1f | ||
with: | ||
context: ./.github/eosjs-ci | ||
file: ./.github/eosjs-ci/Dockerfile | ||
pull: true | ||
push: true | ||
no-cache: true | ||
build-args: | | ||
EOSBRANCH=release_2.1.x | ||
CDTBRANCH=release_1.8.x | ||
tags: | | ||
eosio/eosjs-ci:release_22.0.x | ||
eosio/eosjs-ci:${{ github.sha }} |
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,49 @@ | ||
name: Integration Test - Develop | ||
on: | ||
schedule: | ||
- cron: "0 3 * * *" | ||
|
||
jobs: | ||
integration-test: | ||
name: Integration Test - Develop | ||
runs-on: ubuntu-18.04 | ||
strategy: | ||
matrix: | ||
node-version: [12.14.1] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f | ||
with: | ||
ref: develop | ||
token: ${{ github.token }} | ||
- name: Setup Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@46071b5c7a2e0c34e49c3cb8a0e792e86e18d5ea | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
registry-url: 'https://registry.npmjs.org' | ||
- name: Install | ||
run: | | ||
yarn --frozen-lockfile | ||
- name: Test | ||
run: | | ||
yarn test | ||
- name: Test Node | ||
run: | | ||
yarn test-node | ||
- name: Test Types | ||
run: | | ||
yarn test-types | ||
- name: Build | ||
run: | | ||
yarn build-web | ||
- name: Test Web | ||
uses: cypress-io/github-action@89161930792c0050baeba2737caa058c395ecfcb | ||
with: | ||
spec: cypress/integration/index.spec.js | ||
services: | ||
nodeos: | ||
image: eosio/eosjs-ci:develop | ||
|
||
ports: | ||
- 8888:8888 | ||
- 9876:9876 |
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,49 @@ | ||
name: Integration Test - Release | ||
on: | ||
schedule: | ||
- cron: "0 3 * * *" | ||
|
||
jobs: | ||
integration-test: | ||
name: Integration Test - Release | ||
runs-on: ubuntu-18.04 | ||
strategy: | ||
matrix: | ||
node-version: [12.14.1] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f | ||
with: | ||
ref: release/22.0.x | ||
token: ${{ github.token }} | ||
- name: Setup Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@46071b5c7a2e0c34e49c3cb8a0e792e86e18d5ea | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
registry-url: 'https://registry.npmjs.org' | ||
- name: Install | ||
run: | | ||
yarn --frozen-lockfile | ||
- name: Test | ||
run: | | ||
yarn test | ||
- name: Test Node | ||
run: | | ||
yarn test-node | ||
- name: Test Types | ||
run: | | ||
yarn test-types | ||
- name: Build | ||
run: | | ||
yarn build-web | ||
- name: Test Web | ||
uses: cypress-io/github-action@89161930792c0050baeba2737caa058c395ecfcb | ||
with: | ||
spec: cypress/integration/index.spec.js | ||
services: | ||
nodeos: | ||
image: eosio/eosjs-ci:release_22.0.x | ||
|
||
ports: | ||
- 8888:8888 | ||
- 9876:9876 |
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
Oops, something went wrong.