From cd4dd4400430462fde5f9540336df54c3aa9a6fa Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Thu, 3 Dec 2020 20:02:32 -0500 Subject: [PATCH] actions take 34 --- .github/workflows/build.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 16e5f8f0..eeca3f21 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,7 +32,16 @@ jobs: persist-credentials: false fetch-depth: 0 - - name: Before Build + - name: Cache multiple paths + uses: actions/cache@v2 + with: + path: | + ~/python + ~/ssl + key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }} + + - name: Build and install Python/OpenSSL + if: steps.cache-primes.outputs.cache-hit != 'true' run: | set +e if [ "${RUNNER_OS}" == "macOS" ]; then @@ -47,3 +56,5 @@ jobs: fi cd src source travis/${GAMOS}-before-install.sh + +