From 5796e8e9708fd5ccef2b9e10ead10b2e1216ef4d Mon Sep 17 00:00:00 2001 From: vfcci Date: Thu, 2 Sep 2021 10:43:13 +0200 Subject: [PATCH] [auto] Set up Verificarlo CI on this branch --- .github/workflows/vfc_test_workflow.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/vfc_test_workflow.yml b/.github/workflows/vfc_test_workflow.yml index edc585c..242c764 100644 --- a/.github/workflows/vfc_test_workflow.yml +++ b/.github/workflows/vfc_test_workflow.yml @@ -21,26 +21,25 @@ jobs: with: fetch-depth: 0 - - name: Install HDF5 requirements - run: | - apt update - apt install -y wget libhdf5-dev g++ - name: Run tests run: vfc_ci test -g -r - name: Commit test results run: | git_hash=$(git rev-parse --short "$GITHUB_SHA") + git config --local user.email "action@github.com" git config --local user.name "GitHub Action" + git checkout vfc_ci_dev mkdir -p vfcruns mv *.vfcrun.h5 vfcruns git add vfcruns/* git commit -m "[auto] New test results for commit ${git_hash}" git push + - name: Upload raw results as artifacts uses: actions/upload-artifact@v2 with: name: ${{github.sha}}.vfcraw - path: ./*.vfcraw.h5 + path: ./*.vfcraw.h5 \ No newline at end of file