Update automated build scripts #7
Workflow file for this run
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 TON Desktop wallet compile | |
on: [push,pull_request,workflow_dispatch] | |
defaults: | |
run: | |
shell: cmd | |
jobs: | |
build: | |
runs-on: windows-2019 | |
steps: | |
- name: Check out current repository | |
uses: actions/checkout@v2 | |
with: | |
path: wallet-desktop | |
submodules: 'recursive' | |
- name: Setup msbuild.exe | |
uses: microsoft/[email protected] | |
- name: Set up Visual Studio shell | |
uses: egor-tensin/vs-shell@v2 | |
with: | |
arch: x86 | |
- name: Compile windows desktop wallet | |
run: | | |
cd wallet-desktop\auto-build\windows | |
compile.bat | |
- name: Find & copy binaries | |
run: | | |
mkdir artifacts | |
cp wallet-desktop\auto-build\windows\wallet-desktop\out\Debug\Wallet.exe artifacts | |
- name: Upload artifacts | |
uses: actions/upload-artifact@master | |
with: | |
name: ton-windows-desktop-wallet | |
path: artifacts |