Skip to content

Commit

Permalink
Vutils
Browse files Browse the repository at this point in the history
  • Loading branch information
vic4key committed Oct 4, 2023
1 parent 12d1cc9 commit a99b6aa
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/mingw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,31 @@ jobs:
build:
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Restore MinGW Build Environment
id: Restore-MinGW-Build-Environment
uses: actions/cache/restore@v3
with:
path: C:\ProgramData\chocolatey\lib\mingw\tools\install
key: ${{ runner.os }}-MinGW
restore-keys: ${{ runner.os }}-MinGW
- name: Setup MinGW Build Environment
if: steps.Restore-MinGW-Build-Environment.outputs.cache-hit != 'true'
uses: egor-tensin/setup-mingw@v2
with:
platform: x64
version: '12.2.0'
- name: Store MinGW Build Environment
if: steps.Restore-MinGW-Build-Environment.outputs.cache-hit != 'true'
uses: actions/cache/save@v3
with:
path: C:\ProgramData\chocolatey\lib\mingw\tools\install
key: ${{ runner.os }}-MinGW
- name: Verify MinGW Build Environment
shell: cmd
run: |
ECHO.
g++ --version
G++ --version
- name: Perform Building
working-directory: ${{env.GITHUB_WORKSPACE}}
shell: cmd
Expand Down

0 comments on commit a99b6aa

Please sign in to comment.