From a54744d674ccb4e5a23decfca759a2351a9aed51 Mon Sep 17 00:00:00 2001 From: juan-lunarg Date: Fri, 26 May 2023 16:23:26 -0600 Subject: [PATCH] ci: Remove verbose comment and pointless environment variable --- .github/workflows/vvl.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/vvl.yml b/.github/workflows/vvl.yml index 3094ce3ae5c..eae6a6d94d6 100644 --- a/.github/workflows/vvl.yml +++ b/.github/workflows/vvl.yml @@ -141,14 +141,8 @@ jobs: run: | python3 -m pip install jsonschema pyparsing - name: Cache dependent components - # Speed up builds by caching the build/install artifacts so they can be retrieved without rebuilding. - # Note: Normally the build/install artifacts are enough to satisfy the dependencies. - # But in this repo, there are extra tests and steps that require files that are not placed in build/install. - # When adding new similar tests, make sure to add any other required directories/files to the cache list. id: cache-deps uses: actions/cache@v3 - env: - cache-name: cache-windows with: path: | external/${{ matrix.config }}/glslang/build/install @@ -160,7 +154,7 @@ jobs: external/${{ matrix.config }}/Vulkan-Headers/registry external/${{ matrix.config }}/SPIRV-Headers/include external/${{ matrix.config }}/mimalloc/build/install - key: ${{ matrix.os }}-build-${{ env.cache-name }}-${{ matrix.arch }}-${{ matrix.os }}-${{ matrix.config }}-${{ hashfiles('scripts/known_good.json') }} + key: ${{ matrix.os }}-build-${{ matrix.arch }}-${{ matrix.os }}-${{ matrix.config }}-${{ hashfiles('scripts/known_good.json') }} - name: Build run: python3 scripts/github_ci_win_linux.py --build --config ${{ matrix.config }} --cmake='-DUPDATE_DEPS_SKIP_EXISTING_INSTALL=ON'