-
Notifications
You must be signed in to change notification settings - Fork 454
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update node version, @vsce/vsce, and fix build errors from node updat… (#4055) * update node version, @vsce/vsce, and fix build errors from node update, add improved signing * update node in ci builds * update vscode engine * fix copy * don't sign vsix with VsixSha2 anymore * update changelog * xml2js cg (#4069) * xml2js cg * update tests as well * try update partial * switch kit? * ninja is added to path so it should work, still investigating * update action version with same tool versions * changes to test * test output * more testing * test macos-13 * remove logging * remove logging * try explicit macos-14 * go back to macos-13 * remove static version of vscode * need to use 13 * comment * update node (#4072) * ensure ready to release (#4074) * ensure ready to release * update third party * update workflows (#4076)
- Loading branch information
1 parent
406216a
commit 21fa776
Showing
18 changed files
with
1,354 additions
and
576 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ jobs: | |
- name: Setup Node.js environment | ||
uses: actions/[email protected] | ||
with: | ||
node-version: '16' | ||
node-version: '20' | ||
check-latest: true | ||
|
||
- name: Get Short SHA | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,9 @@ name: CI (Linux) | |
|
||
on: | ||
push: | ||
branches: [ main, rel ] | ||
branches: [ main, 'release/**' ] | ||
pull_request: | ||
branches: [ main, rel ] | ||
branches: [ main, 'release/**' ] | ||
|
||
jobs: | ||
build: | ||
|
@@ -16,7 +16,7 @@ jobs: | |
- name: Setup Node environment | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
node-version: 20 | ||
|
||
- name: Install Yarn | ||
run: npm install -g yarn | ||
|
@@ -31,7 +31,10 @@ jobs: | |
run: yarn lint | ||
|
||
- name: Install CMake/Ninja | ||
uses: lukka/[email protected] | ||
uses: lukka/[email protected] | ||
with: | ||
cmakeVersion: 3.18.3 | ||
ninjaVersion: 1.10.1 | ||
|
||
- name: Build fake compilers for tests | ||
uses: urkle/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,21 +2,21 @@ name: CI (macOS) | |
|
||
on: | ||
push: | ||
branches: [ main, rel ] | ||
branches: [ main, 'release/**' ] | ||
pull_request: | ||
branches: [ main, rel ] | ||
branches: [ main, 'release/**'] | ||
|
||
jobs: | ||
build: | ||
runs-on: macos-latest | ||
runs-on: macos-13 # TODO: This is a workaround until macos-14 is fixed: https://github.com/actions/runner-images/issues/10624 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Setup Node environment | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
node-version: 20 | ||
|
||
- name: Install Yarn | ||
run: npm install -g yarn | ||
|
@@ -31,7 +31,10 @@ jobs: | |
run: yarn lint | ||
|
||
- name: Install CMake/Ninja | ||
uses: lukka/[email protected] | ||
uses: lukka/[email protected] | ||
with: | ||
cmakeVersion: 3.18.3 | ||
ninjaVersion: 1.10.1 | ||
|
||
- name: Build fake compilers for tests | ||
uses: urkle/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,9 @@ name: CI (Windows) | |
|
||
on: | ||
push: | ||
branches: [ main, rel ] | ||
branches: [ main, 'release/**' ] | ||
pull_request: | ||
branches: [ main, rel ] | ||
branches: [ main, 'release/**' ] | ||
|
||
jobs: | ||
build: | ||
|
@@ -17,7 +17,7 @@ jobs: | |
- name: Setup Node environment | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
node-version: 20 | ||
|
||
- name: Install Yarn | ||
run: npm install -g yarn | ||
|
@@ -33,7 +33,10 @@ jobs: | |
|
||
# The cmake server mode has been removed since CMake 3.20 | ||
- name: Install CMake/Ninja | ||
uses: lukka/[email protected] | ||
uses: lukka/[email protected] | ||
with: | ||
cmakeVersion: 3.18.3 | ||
ninjaVersion: 1.10.1 | ||
|
||
- name: Build fake compilers for tests | ||
uses: urkle/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.