WIP jenkins pipeline: working ubuntu arm64 libtonjson + minor fix #40
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: Windows Server 2019 x64 Compile | |
on: [push,workflow_dispatch,workflow_call] | |
defaults: | |
run: | |
shell: cmd | |
jobs: | |
build: | |
runs-on: windows-2019 | |
steps: | |
- name: Get Current OS version | |
run: | | |
systeminfo | findstr /B /C:"OS Name" /C:"OS Version" | |
- name: Check out current repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- name: Build TON | |
run: | | |
copy assembly\native\build-windows-github.bat . | |
copy assembly\native\build-windows.bat . | |
build-windows-github.bat | |
- name: Upload artifacts | |
uses: actions/upload-artifact@master | |
with: | |
name: ton-win-binaries | |
path: artifacts |