-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
13 additions
and
13 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 |
---|---|---|
|
@@ -41,21 +41,21 @@ jobs: | |
- name: Read .env file | ||
uses: xom9ikk/dotenv@v2 | ||
|
||
# - name: Generate ENV related extend file for docker-compose | ||
# uses: cuchi/[email protected] | ||
# with: | ||
# template: .docker/docker-compose.tmp-dev.j2 | ||
# output_file: .docker/docker-compose.${{ matrix.network }}.yml | ||
# variables: | | ||
# RUST_TOOLCHAIN=${{ env.RUST_TOOLCHAIN }} | ||
# NETWORK=${{ matrix.network }} | ||
- name: Generate ENV related extend file for docker-compose | ||
uses: cuchi/[email protected] | ||
with: | ||
template: .docker/docker-compose.tmp-dev.j2 | ||
output_file: .docker/docker-compose.${{ matrix.network }}.yml | ||
variables: | | ||
RUST_TOOLCHAIN=${{ env.RUST_TOOLCHAIN }} | ||
NETWORK=${{ matrix.network }} | ||
|
||
# - name: Show build configuration | ||
# run: cat .docker/docker-compose.${{ matrix.network }}.yml | ||
- name: Show build configuration | ||
run: cat .docker/docker-compose.${{ matrix.network }}.yml | ||
|
||
# - name: Build the stack | ||
# run: docker-compose -f ".docker/docker-compose.${{ matrix.network }}.yml" up -d --build --remove-orphans | ||
- name: Build the stack | ||
run: docker-compose -f ".docker/docker-compose.${{ matrix.network }}.yml" up -d --build --remove-orphans | ||
|
||
- uses: actions/[email protected] | ||
with: | ||
|
@@ -67,7 +67,7 @@ jobs: | |
yarn --version | ||
yarn install | ||
yarn add mochawesome | ||
# ../scripts/wait_for_first_block.sh | ||
../scripts/wait_for_first_block.sh | ||
echo "Ready to start tests" | ||
NOW=$(date +%s) && yarn test --reporter mochawesome --reporter-options reportFilename=test-${NOW} | ||
env: | ||
|