-
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #66 from AHOHNMYC/update_libgit2
Fix CI
- Loading branch information
Showing
2 changed files
with
10 additions
and
6 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 |
---|---|---|
|
@@ -38,7 +38,7 @@ jobs: | |
submodules: true | ||
|
||
- name: Setup | Node.js | ||
uses: actions/setup-node@v3 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
|
||
|
@@ -53,7 +53,7 @@ jobs: | |
run: | | ||
$VERSION = npx semantic-release --dry-run | Select-String -Pattern "The next release version is" | ForEach-Object { $_.ToString() -replace '.*The next release version is ([0-9.]+).*', '$1' } | ||
Write-Host "Version: $VERSION" | ||
echo "::set-output name=version::$version" | ||
echo "::setOutput name=version::$version" | ||
Set-Content -Path ./version -Value "# current version of millennium`nv$VERSION" | ||
git config user.email "[email protected]" | ||
|
@@ -86,7 +86,7 @@ jobs: | |
} | ||
- name: Set up cache for Python source | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
id: build-cache | ||
with: | ||
path: | | ||
|
@@ -124,6 +124,10 @@ jobs: | |
shell: pwsh | ||
|
||
- name: (Python) Add msbuild to PATH | ||
if: steps.build-cache.outputs.cache-hit != 'true' | ||
uses: microsoft/setup-msbuild@v2 | ||
|
||
- name: (Python) Build 3.11.8 | ||
if: steps.build-cache.outputs.cache-hit != 'true' | ||
run: | | ||
|
@@ -168,7 +172,7 @@ jobs: | |
run: | | ||
# bootstrap and install vcpkg | ||
./vendor/vcpkg/bootstrap-vcpkg.bat | ||
./vendor/vcpkg/bootstrap-vcpkg.bat -disableMetrics | ||
./vendor/vcpkg/vcpkg integrate install | ||
- name: (Generator) Configure CMake | ||
|
@@ -193,4 +197,4 @@ jobs: | |
- name: Setup | Run Semantic Release | ||
run: npx semantic-release | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
Submodule vcpkg
updated
1462 files