Skip to content

Commit

Permalink
Try with more rigorous sandbox start check
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeldiamant committed Mar 23, 2022
1 parent e3d23b7 commit a0c9974
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions .github/workflows/build.yml
Expand Up @@ -53,33 +53,33 @@ jobs:
sudo chmod +x /usr/local/bin/docker-compose
sudo ln -s /usr/local/bin/docker-compose /usr/bin/docker-compose
docker-compose --version
# - name: Install required os level applications
# run: |
# # https://serverfault.com/a/992421
# export DEBIAN_FRONTEND=noninteractive
# export TZ=Etc/UTC
# apt update -y
# apt install -y curl git nodejs python-is-python3 python3-pip
# curl -fsSL https://get.docker.com -o get-docker.sh
# sh get-docker.sh
# pip3 install docker-compose
# - name: Clone sandbox
# uses: actions/checkout@v2
# with:
# repository: algorand/sandbox
# path: .sandbox
# ref: sleep_longer
- name: Create sandbox
uses: lucasvanmol/algorand-sandbox-action@v1
- name: Install required os level applications
run: |
# https://serverfault.com/a/992421
export DEBIAN_FRONTEND=noninteractive
export TZ=Etc/UTC
apt update -y
apt install -y curl git nodejs python-is-python3 python3-pip
curl -fsSL https://get.docker.com -o get-docker.sh
sh get-docker.sh
pip3 install docker-compose
- name: Clone sandbox
uses: actions/checkout@v2
with:
config: dev
repository: algorand/sandbox
path: .sandbox
ref: will/reliable-startup
# - name: Create sandbox
# uses: lucasvanmol/algorand-sandbox-action@v1
# with:
# config: dev

- name: Setup integration test environment
run: make pip build # integration-env-up
run: make pip build integration-env-up
- name: Run integration tests
run: make blackbox
# - name: Tear down integration test environment
# run: make integration-env-down
- name: Tear down integration test environment
run: make integration-env-down
build-docset:
runs-on: ubuntu-20.04
container: python:3.9 # Needs `make`, can't be slim
Expand Down

0 comments on commit a0c9974

Please sign in to comment.