From 3afce5718b1b97596266c45182f9643bb3d9cd2f Mon Sep 17 00:00:00 2001 From: abejgonzalez Date: Tue, 12 Oct 2021 21:37:18 -0700 Subject: [PATCH] Testing theory --- .github/workflows/chipyard-run-tests.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/chipyard-run-tests.yml b/.github/workflows/chipyard-run-tests.yml index f27f726b..c4b4f6d3 100644 --- a/.github/workflows/chipyard-run-tests.yml +++ b/.github/workflows/chipyard-run-tests.yml @@ -24,19 +24,22 @@ jobs: name: test1 runs-on: ubuntu-latest steps: + - uses: actions/checkout@v2 - run: | - mkdir -p $GITHUB_WORKSPACE echo "dummy" >> $GITHUB_WORKSPACE/temp.file echo "${{ hashFiles('**/temp.file') }}" + echo "${{ hashFiles('**/README.md') }}" test2: name: test2 runs-on: self-hosted steps: + - uses: actions/checkout@v2 - run: | - mkdir -p $GITHUB_WORKSPACE echo "dummy" >> $GITHUB_WORKSPACE/temp.file echo "${{ hashFiles('**/temp.file') }}" + echo "${{ hashFiles('**/README.md') }}" + test3: name: test3 @@ -45,12 +48,11 @@ jobs: image: ucbbar/chipyard-ci-image:554b436 options: --entrypoint /bin/bash steps: + - uses: actions/checkout@v2 - run: | - mkdir -p $GITHUB_WORKSPACE echo "dummy" >> $GITHUB_WORKSPACE/temp.file echo "${{ hashFiles('**/temp.file') }}" - - + echo "${{ hashFiles('**/README.md') }}" # commit-on-master-check: