Skip to content

workflows: added usage of BSC_INTEGRATION_TEST_GITHUB_TOKEN secret fo… #4

workflows: added usage of BSC_INTEGRATION_TEST_GITHUB_TOKEN secret fo…

workflows: added usage of BSC_INTEGRATION_TEST_GITHUB_TOKEN secret fo… #4

name: BSC Integration Test
on:
push:
branches:
- feature/bsc-integration-testing
jobs:
compile:
name: BSC Integration Test
runs-on: ubuntu-latest
steps:
- name: Checkout bsc-docker-deploy
uses: actions/checkout@v4
with:
repository: 'bnb-chain/bsc-docker-deploy'
token: ${{ secrets.BSC_INTEGRATION_TEST_GITHUB_TOKEN }}
path: "bsc-docker-deploy"
ref: 'feature/dinamic-entrypoint'
- name: Checkout bsc-genesis-contract
uses: actions/checkout@v4
with:
repository: 'bnb-chain/bsc-genesis-contract'
token: ${{ secrets.BSC_INTEGRATION_TEST_GITHUB_TOKEN }}
path: "bsc-docker-deploy/bsc-genesis-contract"
- name: Checkout node
uses: actions/checkout@v4
with:
repository: 'bnb-chain/node'
token: ${{ secrets.BSC_INTEGRATION_TEST_GITHUB_TOKEN }}
path: "bsc-docker-deploy/node"
- name: Checkout bsc
uses: actions/checkout@v4
with:
repository: 'bnb-chain/bsc'
token: ${{ secrets.BSC_INTEGRATION_TEST_GITHUB_TOKEN }}
path: "bsc-docker-deploy/bsc"
- name: Test
run: |
ls -lah
pwd
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: login
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.BSC_INTEGRATION_TEST_GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
push: true
context: bsc-docker-deploy/
tags: ghcr.io/bnb-chain/bsc-integration-testing:latest
- name: Checkout bsc-integration-testing
uses: actions/checkout@v4
with:
repository: 'bnb-chain/bsc-integration-testing'
token: ${{ secrets.BSC_INTEGRATION_TEST_GITHUB_TOKEN }}
path: "bsc-integration-testing"
- name: Setup Go 1.21
uses: actions/setup-go@v4
with:
go-version: "1.21"
- name: Go test with docker containers
uses: bnb-alexlucaci/go-test-docker-run-action@v3
with:
working_directory: ./bsc-integration-testing
username: bnb-alexlucaci
password: ${{ secrets.BSC_INTEGRATION_TEST_GITHUB_TOKEN }}
registry: ghcr.io
run: |
env VOLUME_MOUNT_PATH=${{ github.workspace }}/bsc-integration-testing/foundation/test IMAGE_NAME=ghcr.io/bnb-chain/bsc-integration-testing:latest go test -v ./...