Skip to content

Commit 549a7ea

Browse files
committed
fix(workflow): remove manual vcpkg update step
these led to a dirty worktree and thus a dirty version, causing pypi deployment to fail.
1 parent e6cd5ea commit 549a7ea

File tree

3 files changed

+0
-15
lines changed

3 files changed

+0
-15
lines changed

.github/workflows/build-deploy.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,6 @@ jobs:
6767
- name: Submodule recursive
6868
run: git submodule update --init --recursive
6969

70-
- name: Update vcpkg
71-
run: |
72-
cd ${{ env.VCPKG_ROOT }}
73-
git checkout master
74-
7570
# Setup the build machine with the most recent versions of CMake and Ninja. Both are cached if not already: on subsequent runs both will be quickly restored from GitHub cache service.
7671
- uses: lukka/get-cmake@latest
7772
# Restore both vcpkg and its artifacts from the GitHub cache service.

.github/workflows/deploy-docs.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,6 @@ jobs:
4040
- name: Submodule recursive
4141
run: git submodule update --init --recursive
4242

43-
- name: Update vcpkg
44-
run: |
45-
cd ${{ env.VCPKG_ROOT }}
46-
git checkout master
47-
4843
# Setup the build machine with the most recent versions of CMake and Ninja. Both are cached if not already: on subsequent runs both will be quickly restored from GitHub cache service.
4944
- uses: lukka/get-cmake@latest
5045
# Restore both vcpkg and its artifacts from the GitHub cache service.

.github/workflows/quick-test.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,6 @@ jobs:
4545
- name: Submodule recursive
4646
run: git submodule update --init --recursive
4747

48-
- name: Update vcpkg
49-
run: |
50-
cd ${{ env.VCPKG_ROOT }}
51-
git checkout master
52-
5348
# Setup the build machine with the most recent versions of CMake and Ninja. Both are cached if not already: on subsequent runs both will be quickly restored from GitHub cache service.
5449
- uses: lukka/get-cmake@latest
5550
# Restore both vcpkg and its artifacts from the GitHub cache service.

0 commit comments

Comments
 (0)