Skip to content

Commit 6d0d78a

Browse files
committed
forget the template
1 parent 946dbd5 commit 6d0d78a

File tree

2 files changed

+14
-19
lines changed

2 files changed

+14
-19
lines changed

.github/workflows/job-compile-and-test.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,21 @@ jobs:
2121
steps:
2222
- uses: actions/checkout@v4
2323

24-
- name: Copy Published Extension Binaries
24+
- name: Install latest version of the C++ extension
2525
if: ${{ inputs.platform != 'windows' }}
26-
uses: ./.github/workflows/template-copy-published-binaries.yml
26+
run: |
27+
code --install-extension ms-vscode.cpptools --force --pre-release
28+
29+
- name: Copy binaries from the C++ extension
30+
if: ${{ inputs.platform != 'windows' }}
31+
run: |
32+
cp -r ~/.vscode/extensions/ms-vscode.cpptools-1.*/bin/* ./Extension/bin
33+
shell: bash
34+
35+
- name: Uninstall the C++ extension
36+
if: ${{ inputs.platform != 'windows' }}
37+
run: |
38+
code --uninstall-extension ms-vscode.cpptools
2739
2840
- name: Use Node.js 22
2941
uses: actions/setup-node@v4

.github/workflows/template-copy-published-binaries.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)