forked from hyperledger-cacti/cacti
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: merge Weaver into Cacti (hyperledger-cacti#2287)
See the section [Plan to Create the Cacti Repository and Migrate (Import) Weaver Into Cacti](https://wiki.hyperledger.org/display/CA/Cacti+Renaming+Checklist) to review the steps leading upto this PR
- Loading branch information
Showing
2,014 changed files
with
160,765 additions
and
0 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,154 @@ | ||
# Copyright IBM Corp. All Rights Reserved. | ||
# | ||
# SPDX-License-Identifier: CC-BY-4.0 | ||
|
||
name: Deploy Corda Packages | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- 'common/protos-java-kt/gradle.properties' | ||
- 'core/network/corda-interop-app/gradle.properties' | ||
- 'sdks/corda/gradle.properties' | ||
- 'core/drivers/corda-driver/VERSION' | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
publish-protos: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Set up JDK 8 | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: '8' | ||
distribution: 'adopt' | ||
|
||
- name: Generate github.properties | ||
run: | | ||
echo "Using ${GITHUB_ACTOR} user." | ||
echo "username=${GITHUB_ACTOR}" >> github.properties | ||
echo "password=${{ secrets.GITHUB_TOKEN }}" >> github.properties | ||
echo "url=https://maven.pkg.github.com/${GITHUB_REPOSITORY_OWNER}/weaver-dlt-interoperability" >> github.properties | ||
cat github.properties | ||
working-directory: common/protos-java-kt | ||
|
||
- name: Publish | ||
run: | | ||
make publish > out 2> error | ||
exitStatus=$? | ||
(cat error | grep "Received status code 409 from server: Conflict" && exit 0) || exit $exitStatus | ||
working-directory: common/protos-java-kt | ||
|
||
|
||
publish-interop-app: | ||
if: always() | ||
needs: publish-protos | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Set up JDK 8 | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: '8' | ||
distribution: 'adopt' | ||
|
||
- name: Generate github.properties | ||
run: | | ||
echo "Using ${GITHUB_ACTOR} user." | ||
echo "username=${GITHUB_ACTOR}" >> github.properties | ||
echo "password=${{ secrets.GITHUB_TOKEN }}" >> github.properties | ||
echo "url=https://maven.pkg.github.com/${GITHUB_REPOSITORY_OWNER}/weaver-dlt-interoperability" >> github.properties | ||
cat github.properties | ||
working-directory: core/network/corda-interop-app | ||
|
||
- name: Build | ||
run: make build | ||
working-directory: core/network/corda-interop-app | ||
|
||
- name: Publish | ||
run: | | ||
make publish > out 2> error | ||
exitStatus=$? | ||
(cat error | grep "Received status code 409 from server: Conflict" && exit 0) || exit $exitStatus | ||
working-directory: core/network/corda-interop-app | ||
|
||
publish-sdk: | ||
if: always() | ||
needs: [publish-protos, publish-interop-app] | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Set up JDK 8 | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: '8' | ||
distribution: 'adopt' | ||
|
||
- name: Generate github.properties | ||
run: | | ||
echo "Using ${GITHUB_ACTOR} user." | ||
echo "username=${GITHUB_ACTOR}" >> github.properties | ||
echo "password=${{ secrets.GITHUB_TOKEN }}" >> github.properties | ||
echo "url=https://maven.pkg.github.com/${GITHUB_REPOSITORY_OWNER}/weaver-dlt-interoperability" >> github.properties | ||
cat github.properties | ||
working-directory: sdks/corda | ||
|
||
- name: Build | ||
run: make build | ||
working-directory: sdks/corda | ||
|
||
- name: Publish | ||
run: | | ||
make publish > out 2> error | ||
exitStatus=$? | ||
(cat error | grep "Received status code 409 from server: Conflict" && exit 0) || exit $exitStatus | ||
working-directory: sdks/corda | ||
|
||
publish-driver-image: | ||
if: ${{ always() && github.repository_owner == 'hyperledger-labs' }} | ||
needs: [publish-protos, publish-interop-app, publish-sdk] | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v1 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Generate github.properties | ||
run: | | ||
echo "Using ${GITHUB_ACTOR} user." | ||
echo "username=${GITHUB_ACTOR}" >> github.properties | ||
echo "password=${{ secrets.GITHUB_TOKEN }}" >> github.properties | ||
echo "url=https://maven.pkg.github.com/${GITHUB_REPOSITORY_OWNER}/weaver-dlt-interoperability" >> github.properties | ||
cat github.properties | ||
working-directory: core/drivers/corda-driver | ||
|
||
- name: Check if package already exists | ||
run: (make check-if-tag-exists && echo "CORDA_DRIVER_PUSH=true" >> $GITHUB_ENV) || echo "CORDA_DRIVER_PUSH=false" >> $GITHUB_ENV | ||
working-directory: core/drivers/corda-driver | ||
|
||
- name: Build and Push | ||
if: ${{ env.CORDA_DRIVER_PUSH == 'true' }} | ||
run: make push-image | ||
working-directory: core/drivers/corda-driver | ||
|
||
- name: Push latest tag | ||
if: ${{ env.CORDA_DRIVER_PUSH == 'true' }} | ||
run: make push-image-latest | ||
working-directory: core/drivers/corda-driver |
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,42 @@ | ||
# Copyright IBM Corp. All Rights Reserved. | ||
# | ||
# SPDX-License-Identifier: CC-BY-4.0 | ||
|
||
name: Deploy Docs (Github Pages) | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- 'docs/**' | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
deploy-docs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Use Node.js 16.x | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: 16.x | ||
|
||
- name: NPM INSTALL | ||
run: npm install | ||
working-directory: docs | ||
|
||
- name: Build | ||
run: npm run build | ||
working-directory: docs | ||
|
||
- name: Deploy | ||
uses: JamesIves/github-pages-deploy-action@v4.3.0 | ||
with: | ||
branch: gh-pages # The branch the action should deploy to. | ||
folder: docs/build # The folder the action should deploy. | ||
|
Oops, something went wrong.