git.delta.rocks / unique-network / refs/commits / 70da175fb9fe

difftreelog

Merge branch 'develop' of https://github.com/usetech-llc/nft_private into develop

str-mv2021-08-12parents: #e961e84 #d49b9b4.patch.diff
in: master

2 files changed

modified.github/workflows/node_build_test.ymldiffbeforeafterboth
--- a/.github/workflows/node_build_test.yml
+++ b/.github/workflows/node_build_test.yml
@@ -31,11 +31,11 @@
           username: ${{ secrets.SERVER_USERNAME }}
           key: ${{ secrets.KEY }}
           port: ${{ secrets.SERVER_PORT }}
-          command_timeout: 240m
+          command_timeout: 300m
           script: |
             eval $(ssh-agent -s)
-            ssh-add /home/polkadot/.ssh/git_hub
-            git clone git@github.com:usetech-llc/nft_private.git
+            ssh-add /home/devops/.ssh/git_hub
+            git clone git@github.com:UniqueNetwork/nft_private.git
             cd nft_private
             git checkout develop
             # git pull --all
modifiedtests/src/pallet-presence.test.tsdiffbeforeafterboth
23 'parachainsystem',23 'parachainsystem',
24 'parachaininfo',24 'parachaininfo',
25 'evm',25 'evm',
26 'evmcodersubstrate',
27 'evmcontracthelpers',
28 'evmtransactionpayment',
26 'ethereum',29 'ethereum',
27 'xcmpqueue',30 'xcmpqueue',
28 'polkadotxcm',31 'polkadotxcm',
59 });62 });
60 it('No extra pallets are included', async () => {63 it('No extra pallets are included', async () => {
61 await usingApi(async api => {64 await usingApi(async api => {
62 expect(getModuleNames(api).length).to.be.equal(requiredPallets.length + consensusPallets.length);65 expect(getModuleNames(api).sort()).to.be.deep.equal([...requiredPallets, ...consensusPallets].sort());
63 });66 });
64 });67 });
65});68});