From 4c50ff0dd082ba061ccf192b035826f575464ae4 Mon Sep 17 00:00:00 2001 From: mtfishman Date: Tue, 14 May 2024 22:12:18 -0400 Subject: [PATCH] Workflow cleanup, try fixing image upload --- .github/workflows/CI.yml | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 51607d8..12cd0d9 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -36,15 +36,6 @@ jobs: version: ${{ matrix.version }} arch: ${{ matrix.arch }} - uses: julia-actions/cache@v2 - #env: - # cache-name: cache-artifacts - #with: - #path: ~/.julia/artifacts - #key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }} - #restore-keys: | - #${{ runner.os }}-test-${{ env.cache-name }}- - #${{ runner.os }}-test- - #${{ runner.os }}- - run: sudo apt-get update && sudo apt-get install -y xorg-dev mesa-utils xvfb libgl1 freeglut3-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev libxext-dev - name: Install Julia dependencies and run tests id: referencetests @@ -55,9 +46,9 @@ jobs: - name: Upload test Artifacts uses: actions/upload-artifact@v4 with: - name: ReferenceImages_GLMakie_${{ matrix.version }} + name: ReferenceImages_ITensorGLMakie_${{ matrix.version }} path: | - ./ITensorGLMakie/test/references/ + ./test/references/ - name: Fail after artifacts if tests failed if: ${{ env.TESTS_SUCCESSFUL != 'true' }} run: exit 1