From ba88dd60f6b9499961c8de3ffa4c4f3cc2b32d1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=AA=E3=81=A4=E3=81=8D?= Date: Mon, 8 Aug 2022 13:46:03 -0700 Subject: [PATCH] Revert "Run qemu in tmpfs (#1707)" (#1757) This reverts commit cb74cc4c3150898a95adfe2d8ebcd50ec49c5be9. --- .github/workflows/ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c7a2b92cf..23ce9ad9e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -315,12 +315,10 @@ jobs: --env "GH_TOKEN=$GH_TOKEN" \ --env "GH_USER=$GH_USER" \ --platform ${{ matrix.platform }} \ - --mount type=bind,source="$PWD",target="$PWD" \ - --mount type=tmpfs,destination=/root/.pub-cache \ - --mount type=tmpfs,destination=/tmp \ + --volume "$PWD:$PWD" \ --workdir "$PWD" \ docker.io/library/dart:latest \ - /bin/sh -c "cp -R . /tmp/workspace && cd /tmp/workspace && dart pub get && dart run grinder pkg-github-linux-${{ matrix.arch }}" + /bin/sh -c "dart pub get && dart run grinder pkg-github-linux-${{ matrix.arch }}" env: GH_TOKEN: "${{ secrets.GH_TOKEN }}" GH_USER: sassbot