Skip to content

Commit

Permalink
ci: Remove verbose comment and pointless environment variable
Browse files Browse the repository at this point in the history
  • Loading branch information
juan-lunarg committed May 27, 2023
1 parent 25d7b27 commit a54744d
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/vvl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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'

Expand Down

0 comments on commit a54744d

Please sign in to comment.