-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
504 additions
and
465 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 |
---|---|---|
|
@@ -8,7 +8,7 @@ env: | |
GITHUB_USER: "${{ github.actor }}" | ||
jobs: | ||
versio-checks: | ||
runs-on: windows-latest | ||
runs-on: ubuntu-latest | ||
if: "!contains(github.event.head_commit.message, 'skip ci')" | ||
steps: | ||
- name: Checkout code | ||
|
@@ -17,6 +17,8 @@ jobs: | |
uses: chaaz/versio-actions/[email protected] | ||
- name: Fetch history | ||
run: git fetch --unshallow | ||
- name: Check projects | ||
run: versio check | ||
- name: Output plan | ||
run: versio plan | ||
build: | ||
|
@@ -35,14 +37,13 @@ jobs: | |
uses: actions/checkout@v3 | ||
with: | ||
ref: main | ||
- name: Install winget | ||
if: "matrix.os == 'windows-latest'" | ||
uses: Cyberboss/install-winget@v1 | ||
- name: Install Windows dependencies | ||
if: "matrix.os == 'windows-latest'" | ||
# echo "C:\msys64\mingw32\bin" >> $GITHUB_PATH | ||
run: | | ||
$env:PATH = "C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\ProgramData\chocolatey\bin" | ||
[Environment]::SetEnvironmentVariable("Path", $env:PATH, "Machine") | ||
choco install -y Gpg4win | ||
echo "C:\Program Files (x86)\Gpg4win\..\GnuPG\bin" >> $env:GITHUB_PATH | ||
winget install --id GnuPG.Gpg4win --disable-interactivity --accept-source-agreements | ||
- name: Get Windows cargo stable | ||
if: "matrix.os == 'windows-latest'" | ||
uses: actions-rs/toolchain@v1 | ||
|
Oops, something went wrong.