Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/fix pipeline #3927

Merged
merged 12 commits into from
Jul 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/api-manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,10 @@ on:
description: Tags for run(smoke, accounts, firstPool and etc.)
default: 'all'
description: 'Manual run'

jobs:
buildAndTest:
name: Build and Test (Manual)
runs-on: [self-hosted, Linux, medium, ephemeral]
runs-on: ubuntu-latest
services:
ipfs-node:
image: ipfs/kubo:latest
Expand Down Expand Up @@ -65,6 +64,9 @@ jobs:
pushd auth-service
yarn run build
popd
pushd queue-service
yarn run build
popd
pushd guardian-service
yarn run build
popd
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
buildAndTest:
name: Build and Test
runs-on: [self-hosted, Linux, medium, ephemeral]
runs-on: ubuntu-latest
services:
ipfs-node:
image: ipfs/kubo:latest
Expand Down Expand Up @@ -62,6 +62,9 @@ jobs:
pushd auth-service
yarn run build
popd
pushd queue-service
yarn run build
popd
pushd guardian-service
yarn run build
popd
Expand Down Expand Up @@ -98,6 +101,10 @@ jobs:
pushd auth-service
npm start &
sleep 20
popd
pushd queue-service
npm start &
sleep 20
popd
pushd guardian-service
npm start &
Expand Down
2 changes: 1 addition & 1 deletion swagger-indexer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1819,7 +1819,7 @@ info:
the heart of the Guardian solution is a sophisticated Policy Workflow Engine
(PWE) that enables applications to offer a requirements-based tokenization
implementation.
version: 2.22.0
version: 2.26.2
contact:
name: API developer
url: https://envisionblockchain.com
Expand Down
Loading