Fix move path #1
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: Nightly | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
windows: | |
name: Windows | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup environment | |
shell: bash | |
run: | | |
echo "DATEFILE=`git log -1 --date=format:\"%Y_%m_%d_%H%M\" --format=\"%ad\"`" >> $GITHUB_ENV | |
echo "DATEVERSION=`git log -1 --date=format:\"%Y-%m-%d %H:%M\" --format=\"%ad\"`" >> $GITHUB_ENV | |
- name: Setup version info | |
shell: bash | |
run: | | |
sed -i "s/GAME_VERSION_GIT \"[^\"]*\"/GAME_VERSION_GIT \" git ${{ env.DATEVERSION }}\"/" install/win/version.nsh | |
sed -i "s/GAME_DATE_GIT \"[^\"]*\"/GAME_DATE_GIT \"${{ env.DATEFILE }}\"/" install/win/version.nsh | |
sed -i "s/OPENXCOM_VERSION_GIT \"[^\"]*\"/OPENXCOM_VERSION_GIT \" git ${{ env.DATEVERSION }}\"/" src/version.h | |
echo "FILENAME=openxcom_git_${{ env.DATEFILE }}" >> $GITHUB_ENV | |
- name: Install XP Toolset | |
shell: powershell | |
run: | | |
Set-Location "C:\Program Files (x86)\Microsoft Visual Studio\Installer\" | |
$InstallPath = "C:\Program Files\Microsoft Visual Studio\2022\Enterprise" | |
$WorkLoads = '--add Microsoft.VisualStudio.Component.WinXP' | |
$Arguments = ('/c', "vs_installer.exe", 'modify', '--installPath', "`"$InstallPath`"", $WorkLoads, '--quiet', '--norestart', '--nocache') | |
$process = Start-Process -FilePath cmd.exe -ArgumentList $Arguments -Wait -PassThru -WindowStyle Hidden | |
if ($process.ExitCode -eq 0) { | |
Write-Host "components have been successfully added" | |
} else { | |
Write-Host "components were not installed" | |
} | |
- name: Download dependencies | |
shell: powershell | |
run: | | |
Invoke-WebRequest -Uri "https://openxcom.org/download/dev/openxcom-deps-win-vc2017.zip" -OutFile "openxcom-deps-win-vc2017-newest.zip" | |
Expand-Archive -Path "openxcom-deps-win-vc2017-newest.zip" | |
Move-Item -Path "openxcom-deps-win-vc2017-newest\deps\*" -Destination "deps" | |
- name: Add msbuild to PATH | |
uses: microsoft/[email protected] | |
- name: Compile source (x86 & x64) | |
env: | |
VC_FLAGS: /v:minimal /m /p:BuildInParallel=true /p:PreferredToolArchitecture=x64 /p:Configuration=Release_XP | |
run: | | |
cd src | |
msbuild OpenXcom.2010.sln ${{ env.VC_FLAGS }} /p:Platform=Win32 | |
msbuild OpenXcom.2010.sln ${{ env.VC_FLAGS }} /p:Platform=x64 | |
cd .. | |
Rename-Item -Path "bin\Win32\Release_XP" -NewName "Release" | |
Rename-Item -Path "bin\x64\Release_XP" -NewName "Release" | |
- name: Pull translations | |
shell: powershell | |
run: | | |
Invoke-WebRequest -Uri "https://github.com/transifex/cli/releases/latest/download/tx-windows-amd64.zip" -OutFile "tx.zip" | |
Expand-Archive -Path "tx.zip" | |
.\tx\tx.exe --token ${{ secrets.TX_TOKEN }} pull --all --minimum-perc=50 | |
- name: Pull data patch | |
uses: actions/checkout@v3 | |
with: | |
repository: OpenXcom/XcomDataPatch | |
path: ./patch | |
- name: Copy data to bin | |
shell: powershell | |
run: | | |
Move-Item -Force -ErrorAction SilentlyContinue -Path "translations\openxcom\common\*" -Destination "bin\common" | |
Move-Item -Force -ErrorAction SilentlyContinue -Path "translations\openxcom\standard\*" -Destination "bin\standard" | |
Move-Item -Force -ErrorAction SilentlyContinue -Path "patch\xcom1\*" -Destination "bin\standard\xcom1" | |
Move-Item -Force -ErrorAction SilentlyContinue -Path "patch\xcom2\*" -Destination "bin\standard\xcom2" | |
- name: Get SHA hashes | |
uses: nrwl/nx-set-shas@v3 | |
with: | |
main-branch-name: master | |
- name: Generate build log | |
run: | | |
mkdir artifacts | |
git log --pretty=format:"<strong>%an, %ad</strong>%n%B" -n 10 --date=iso-local ${{ env.NX_BASE }}..${{ env.NX_HEAD }} > artifacts\${{ env.FILENAME }}.log | |
- name: Create nightly installer | |
uses: joncloud/makensis-action@v4 | |
with: | |
script-file: "install/win/installer.nsi" | |
- name: Create nightly ZIPs | |
shell: powershell | |
run: | | |
Compress-Archive -Path "bin\Win32\Release\OpenXcom.exe", "bin\Win32\*.dll", "bin\common", "bin\standard", "bin\TFTD", "bin\UFO", "CHANGELOG.txt", "LICENSE.txt", "README.md" -DestinationPath "artifacts\${{ env.FILENAME }}_win32.zip" | |
Compress-Archive -Path "bin\x64\Release\OpenXcom.exe", "bin\x64\*.dll", "bin\common", "bin\standard", "bin\TFTD", "bin\UFO", "CHANGELOG.txt", "LICENSE.txt", "README.md" -DestinationPath "artifacts\${{ env.FILENAME }}_win64.zip" | |
Move-Item -Force -Path "install\win\openxcom-v1.0-win.exe" -Destination "artifacts\${{ env.FILENAME }}_win.exe" | |
- name: Archive artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ env.FILENAME }}_windows | |
path: artifacts/* |