This repository has been archived by the owner on Nov 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore Increase PageSize for Windows GitHub Workflows doing native
compilation Following workaround mentioned here actions/runner-images#3420 (comment) to the `LINK : fatal error LNK1171: unable to load mspdbcore.dll (error code: 1455)` error fixes #416 Signed-off-by: Aurélien Pupier <[email protected]>
- Loading branch information
Showing
2 changed files
with
13 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -67,6 +67,12 @@ jobs: | |
path: ~/.m2 | ||
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | ||
restore-keys: ${{ runner.os }}-m2 | ||
- name: configure Pagefile | ||
uses: al-cheb/[email protected] | ||
with: | ||
minimum-size: 16GB | ||
disk-root: "C:" | ||
if: ${{ matrix.os == 'windows-latest' }} | ||
- name: 🤳 Run native tests | ||
run: mvn install -Pnative | ||
- name: Archive Quarkus log for native tests | ||
|
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,6 +38,12 @@ jobs: | |
path: ~/.m2 | ||
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | ||
restore-keys: ${{ runner.os }}-m2 | ||
- name: configure Pagefile | ||
uses: al-cheb/[email protected] | ||
with: | ||
minimum-size: 16GB | ||
disk-root: "C:" | ||
if: ${{ matrix.os == 'windows-latest' }} | ||
- name: 🤳 Build Native Quarkus | ||
run: mvn install -Pnative -DskipTests | ||
- name: 🛂 Find the version - non-Windows | ||
|
@@ -47,7 +53,7 @@ jobs: | |
run: | | ||
$version = & mvn help:evaluate "-Dexpression=project.version" -q -DforceStdout | ||
echo "version=$version" >> $env:GITHUB_ENV | ||
if: ${{ matrix.os == 'windows-latest' }}} | ||
if: ${{ matrix.os == 'windows-latest' }} | ||
- name: Upload binaries to release | ||
uses: svenstaro/upload-release-action@v2 | ||
with: | ||
|