-
Notifications
You must be signed in to change notification settings - Fork 285
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(cactus-plugin-ledger-connector-fabric-socketio): remove fabric-s…
…ocketio connector - Remove cactus-plugin-ledger-connector-fabric-socketio connector. - Refactor discounted cartrade sample to use openapi fabric connector instead of fabric-socketio. Sample app will use delegated signing, similar to offline signing in old connector. - Remove dead code from cmd-socketio-server - Update fabric SDK to 2.X in all cacti projects, refactor code that use it where necessary. Only exception is fabric persistence plugin which uses fabric SDK as dev dependency (for tests). It can be updated in separate PR later on. Depends on: #2644 Signed-off-by: Michal Bajer <[email protected]>
- Loading branch information
Showing
71 changed files
with
700 additions
and
5,976 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 |
---|---|---|
|
@@ -134,11 +134,11 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
script: | | ||
const failMsg = "yarn codegen script produced version control " + | ||
"side-effects: source files have been changed by it that are " + | ||
"otherwise are under version control. " + | ||
"This means (99% of the time) that you need to run the " + | ||
"yarn codegen script locally and then include the changes it " + | ||
const failMsg = "yarn codegen script produced version control " + | ||
"side-effects: source files have been changed by it that are " + | ||
"otherwise are under version control. " + | ||
"This means (99% of the time) that you need to run the " + | ||
"yarn codegen script locally and then include the changes it " + | ||
"makes in your own commit when submitting your pull request."; | ||
core.setFailed(failMsg) | ||
|
@@ -1214,33 +1214,6 @@ jobs: | |
- run: npm run configure | ||
- run: yarn ts-node ./packages/cactus-plugin-ledger-connector-fabric/src/test/typescript/integration/fabric-v2-2-x/run-transaction-with-ws-ids.test.ts | ||
|
||
cactus-plugin-ledger-connector-fabric-socketio: | ||
continue-on-error: false | ||
env: | ||
FULL_BUILD_DISABLED: true | ||
JEST_TEST_PATTERN: packages/cactus-plugin-ledger-connector-fabric-socketio/src/test/typescript/(unit|integration|benchmark)/.*/*.test.ts | ||
JEST_TEST_RUNNER_DISABLED: false | ||
TAPE_TEST_RUNNER_DISABLED: true | ||
needs: build-dev | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Use Node.js v16.14.2 | ||
uses: actions/[email protected] | ||
with: | ||
node-version: v16.14.2 | ||
- uses: actions/[email protected] | ||
|
||
- id: yarn-cache | ||
name: Restore Yarn Cache | ||
uses: actions/[email protected] | ||
with: | ||
key: ${{ runner.os }}-yarn-${{ hashFiles('./yarn.lock') }} | ||
path: ./.yarn/ | ||
restore-keys: | | ||
${{ runner.os }}-yarn-${{ hashFiles('./yarn.lock') }} | ||
- run: yarn --version | ||
- run: yarn install | ||
- run: ./tools/ci.sh | ||
cactus-plugin-ledger-connector-go-ethereum-socketio: | ||
continue-on-error: false | ||
env: | ||
|
@@ -1608,13 +1581,13 @@ jobs: | |
restore-keys: | | ||
${{ runner.os }}-yarn-${{ hashFiles('./yarn.lock') }} | ||
- run: ./tools/ci.sh | ||
|
||
- name: Install Foundry | ||
uses: foundry-rs/foundry-toolchain@v1 | ||
|
||
- name: Run solidity tests | ||
run: cd packages/cactus-plugin-htlc-eth-besu && forge test -vvvvv | ||
|
||
cactus-test-plugin-htlc-eth-besu-erc20: | ||
continue-on-error: false | ||
env: | ||
|
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.