diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index a2788ff..eba707c 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -26,7 +26,7 @@ jobs: build_deps: scripts/workflows/provision-darwin-build.sh steps: - uses: actions/checkout@master - + - uses: actions/cache@v3 with: path: | @@ -83,6 +83,8 @@ jobs: path: /usr/local/bin - name: Setup quill binary run: chmod +x /usr/local/bin/quill + - name: Install dfx + uses: dfinity/setup-dfx@main - name: Provision Darwin if: ${{ contains(matrix.os, 'macos') }} run: bash scripts/workflows/provision-darwin-e2e.sh diff --git a/scripts/workflows/provision-darwin-e2e.sh b/scripts/workflows/provision-darwin-e2e.sh index da0c88c..eee1900 100755 --- a/scripts/workflows/provision-darwin-e2e.sh +++ b/scripts/workflows/provision-darwin-e2e.sh @@ -9,9 +9,6 @@ pushd /tmp brew install coreutils -# install dfx -sh -ci "$(curl -fsSL https://internetcomputer.org/install.sh)" - # Install Bats. if [ "$(uname -r)" = "19.6.0" ]; then brew unlink bats diff --git a/scripts/workflows/provision-linux-e2e.sh b/scripts/workflows/provision-linux-e2e.sh index badbc91..74843d2 100755 --- a/scripts/workflows/provision-linux-e2e.sh +++ b/scripts/workflows/provision-linux-e2e.sh @@ -7,9 +7,6 @@ export # Enter temporary directory. pushd /tmp -# install dfx -sh -ci "$(curl -fsSL https://internetcomputer.org/install.sh)" - # Install Bats. sudo apt-get install --yes bats