Merge remote-tracking branch 'origin/master' #69
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
name: C/C++ CI (Windows) | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout Source Tree | |
uses: actions/checkout@v3 | |
- name: Setup TDM-GCC | |
run: | | |
choco install 7zip --version 22.1 -y | |
Invoke-WebRequest -Uri 'https://github.com/jmeubank/tdm-gcc/releases/download/v10.3.0-tdm64-2/tdm64-gcc-10.3.0-2.exe' -OutFile 'C:\Windows\temp\TDM-GCC-64.exe' | |
New-Item -ItemType Directory -Path 'C:\TDM-GCC-64' | |
Start-Process '7z' -ArgumentList 'e C:\Windows\temp\TDM-GCC-64.exe -oC:\TDM-GCC-64 -y' -Wait | |
Start-Process '7z' -ArgumentList 'e C:\TDM-GCC-64\*.tar.xz -oC:\TDM-GCC-64 -y' -Wait | |
Start-Process '7z' -ArgumentList 'x C:\TDM-GCC-64\*.tar -oC:\TDM-GCC-64 -y' -Wait | |
$env:PATH = 'C:\TDM-GCC-64\bin;' + $env:PATH | |
[Environment]::SetEnvironmentVariable('PATH', $env:PATH, [EnvironmentVariableTarget]::Machine) | |
tree /f C:\TDM-GCC-64 | |
- name: Setup folder directories | |
run: | | |
mkdir build | |
mkdir build\x86 | |
mkdir build\x64 | |
tree /f D:\a\ | |
- name: Build xpmgr (x86) | |
run: | | |
windres icon.rc icon.res | |
C:\TDM-GCC-64\bin\g++.exe -m32 -o build\x86\xpmgr_x86 xpmgr.cpp icon.res -lole32 -luuid -loleaut32 | |
- name: Build xpmgr (x64) | |
run: | | |
windres icon.rc icon.res | |
C:\TDM-GCC-64\bin\g++.exe -o build\x64\xpmgr_x64 xpmgr.cpp icon.res -lole32 -luuid -loleaut32 | |
- name: Upload build artifact (x86) | |
uses: actions/upload-artifact@v3.1.2 | |
with: | |
name: xpmgr (x86) | |
path: .\build\x86 | |
- name: Upload build artifact (x64) | |
uses: actions/upload-artifact@v3.1.2 | |
with: | |
name: xpmgr (x64) | |
path: .\build\x64 |