Skip to content

Set group permissions in volumes #180

Set group permissions in volumes

Set group permissions in volumes #180

Workflow file for this run

name: E2E
on:
pull_request:
permissions:
contents: write
jobs:
e2e-test:
runs-on: ubuntu-latest
strategy:
matrix:
test-suite: [TestEthereumE2ESuite, TestFabricE2ESuite]
blockchain-provider: [geth, fabric, besu]
token-provider: [none, erc1155, erc20_erc721]
database-type: [sqlite3, postgres]
exclude:
- blockchain-provider: geth
test-suite: TestFabricE2ESuite
- blockchain-provider: besu
test-suite: TestFabricE2ESuite
- blockchain-provider: fabric
test-suite: TestEthereumE2ESuite
- blockchain-provider: fabric
token-provider: erc1155
- blockchain-provider: fabric
token-provider: erc20_erc721
- blockchain-provider: geth
token-provider: none
- blockchain-provider: besu
token-provider: none
fail-fast: false
steps:
- name: Checkout FireFly CLI
uses: actions/checkout@v3
with:
path: firefly-cli
fetch-depth: 0
- name: Checkout FireFly Core repo
uses: actions/checkout@v3
with:
repository: hyperledger/firefly
path: firefly
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
- name: Compile FireFly CLI
working-directory: firefly-cli
run: make install
- name: Run E2E tests
working-directory: firefly
env:
TEST_SUITE: ${{ matrix.test-suite }}
BLOCKCHAIN_PROVIDER: ${{ matrix.blockchain-provider }}
TOKENS_PROVIDER: ${{ matrix.token-provider }}
DATABASE_TYPE: ${{ matrix.database-type }}
DOWNLOAD_CLI: false
run: ./test/e2e/run.sh
- name: Archive container logs
uses: actions/upload-artifact@v2
if: always()
with:
name: container-logs-${{ matrix.test-suite }}-${{ matrix.blockchain-provider }}-${{ matrix.database-type }}-${{ matrix.token-provider }}
path: containerlogs/logs.txt