Skip to content

Commit

Permalink
ticket-1577 IMA Agent moved into it's own repository
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiy-skalelabs committed Oct 12, 2023
1 parent 006bc42 commit 799ea4e
Show file tree
Hide file tree
Showing 6 changed files with 293 additions and 293 deletions.
12 changes: 6 additions & 6 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
version: 2
updates:
- package-ecosystem: npm
directory: "/proxy"
schedule:
interval: "weekly"
day: "saturday"
allow:
- dependency-type: "production"
directory: "/proxy"
schedule:
interval: "weekly"
day: "saturday"
allow:
- dependency-type: "production"
66 changes: 33 additions & 33 deletions .github/workflows/cla.yml
Original file line number Diff line number Diff line change
@@ -1,37 +1,37 @@
name: "cla"
on:
issue_comment:
types: [created]
pull_request_target:
types: [opened, closed, synchronize]
issue_comment:
types: [created]
pull_request_target:
types: [opened, closed, synchronize]

jobs:
cla:
runs-on: ubuntu-latest
steps:
- name: "Get Team Members"
id: team
# github-script, v6.1.0
uses: actions/github-script@7a5c598405937d486b0331594b5da2b14db670da
with:
github-token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
result-encoding: string
script: |
const members = await github.paginate(
github.rest.orgs.listMembers,
{ org: "skalenetwork" },
);
return members.map(m => m.login).join(",");
- name: "CLA Assistant"
if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target'
# Beta Release, v2.1.3-beta
uses: cla-assistant/github-action@ba066dbae3769e2ce93ec8cfc4fdc51b9db628ba
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PERSONAL_ACCESS_TOKEN : ${{ secrets.PERSONAL_ACCESS_TOKEN }}
with:
path-to-signatures: 'signatures/version1/cla.json'
path-to-document: 'https://skale.network/cla.txt'
remote-organization-name: 'skalenetwork'
remote-repository-name: cla-sigs
allowlist: '${{ steps.team.outputs.result }},*[bot]'
cla:
runs-on: ubuntu-latest
steps:
- name: "Get Team Members"
id: team
# github-script, v6.1.0
uses: actions/github-script@7a5c598405937d486b0331594b5da2b14db670da
with:
github-token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
result-encoding: string
script: |
const members = await github.paginate(
github.rest.orgs.listMembers,
{ org: "skalenetwork" },
);
return members.map(m => m.login).join(",");
- name: "CLA Assistant"
if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target'
# Beta Release, v2.1.3-beta
uses: cla-assistant/github-action@ba066dbae3769e2ce93ec8cfc4fdc51b9db628ba
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PERSONAL_ACCESS_TOKEN : ${{ secrets.PERSONAL_ACCESS_TOKEN }}
with:
path-to-signatures: 'signatures/version1/cla.json'
path-to-document: 'https://skale.network/cla.txt'
remote-organization-name: 'skalenetwork'
remote-repository-name: cla-sigs
allowlist: '${{ steps.team.outputs.result }},*[bot]'
32 changes: 16 additions & 16 deletions .github/workflows/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
version: 2
updates:
- package-ecosystem: npm
directory: "/agent"
schedule:
interval: "weekly"
day: "saturday"
open-pull-requests-limit: 10
directory: "/agent"
schedule:
interval: "weekly"
day: "saturday"
open-pull-requests-limit: 10
- package-ecosystem: npm
directory: "/proxy"
schedule:
interval: "weekly"
day: "saturday"
allow:
- dependency-type: "production"
directory: "/proxy"
schedule:
interval: "weekly"
day: "saturday"
allow:
- dependency-type: "production"
- package-ecosystem: npm
directory: "/npms/skale-ima"
schedule:
interval: "weekly"
day: "saturday"
open-pull-requests-limit: 10
directory: "/npms/skale-ima"
schedule:
interval: "weekly"
day: "saturday"
open-pull-requests-limit: 10
30 changes: 15 additions & 15 deletions .github/workflows/issue_check.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
name: Get linked issues
on:
pull_request:
types: [ edited, synchronize, opened, reopened ]
pull_request:
types: [ edited, synchronize, opened, reopened ]

jobs:
check-linked-issues:
name: Check if pull request has linked issues
runs-on: ubuntu-latest
steps:
- name: Get issues
id: get-issues
uses: mondeja/pr-linked-issues-action@v2
env:
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- name: PR has not linked issues
if: join(steps.get-issues.outputs.issues) == ''
run:
exit 1
check-linked-issues:
name: Check if pull request has linked issues
runs-on: ubuntu-latest
steps:
- name: Get issues
id: get-issues
uses: mondeja/pr-linked-issues-action@v2
env:
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- name: PR has not linked issues
if: join(steps.get-issues.outputs.issues) == ''
run:
exit 1
156 changes: 78 additions & 78 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,83 +168,83 @@ jobs:
pip install predeployed/dist/ima_predeployed-*.whl
python predeployed/scripts/generate_abi.py > data/ima-$VERSION-predeployed-abi.json
test-integration:
runs-on: ubuntu-latest

env:
working-directory: ./test

steps:
- uses: actions/checkout@v2

- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"

- uses: actions/cache@v2
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Set up Node
uses: actions/setup-node@v2
with:
node-version: '16'

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8

- name: Get IMA contracts
run: |
git clone https://github.com/skalenetwork/IMA.git --recursive-submodules
cd IMA
yarn install
cd ..
test-integration:
runs-on: ubuntu-latest

- name: Compile contracts
working-directory: ./proxy
run: |
yarn install
- name: Install all NPMs
run: |
yarn install
- name: Start background ganache
working-directory: ./proxy
run: |
npx ganache --miner.blockGasLimit 12000000 --logging.quiet --chain.allowUnlimitedContractSize --wallet.defaultBalance 2000000 --wallet.accountKeysPath ../test/accounts.json &
- name: Prepare test (PY part)
working-directory: ${{env.working-directory}}
run: |
python3 ../scripts/config_from_accounts.py accounts.json config.json
pip3 install -r requirements.txt
- name: Run test (PY part)
working-directory: ${{env.working-directory}}
run: |
python3 test.py
- name: Prepare test (JS part)
working-directory: ${{env.working-directory}}
run: |
yarn install
- name: Run test (JS part)
working-directory: ${{env.working-directory}}
run: |
yarn test
env:
working-directory: ./test

steps:
- uses: actions/checkout@v2

- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"

- uses: actions/cache@v2
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Set up Node
uses: actions/setup-node@v2
with:
node-version: '16'

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8

- name: Get IMA contracts
run: |
git clone https://github.com/skalenetwork/IMA.git --recursive-submodules
cd IMA
yarn install
cd ..
- name: Compile contracts
working-directory: ./proxy
run: |
yarn install
- name: Install all NPMs
run: |
yarn install
- name: Start background ganache
working-directory: ./proxy
run: |
npx ganache --miner.blockGasLimit 12000000 --logging.quiet --chain.allowUnlimitedContractSize --wallet.defaultBalance 2000000 --wallet.accountKeysPath ../test/accounts.json &
- name: Prepare test (PY part)
working-directory: ${{env.working-directory}}
run: |
python3 ../scripts/config_from_accounts.py accounts.json config.json
pip3 install -r requirements.txt
- name: Run test (PY part)
working-directory: ${{env.working-directory}}
run: |
python3 test.py
- name: Prepare test (JS part)
working-directory: ${{env.working-directory}}
run: |
yarn install
- name: Run test (JS part)
working-directory: ${{env.working-directory}}
run: |
yarn test
Loading

0 comments on commit 799ea4e

Please sign in to comment.