mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-12 19:22:37 +00:00
* TVM instructions: SECP256K1_XONLY_PUBKEY_TWEAK_ADD, SETCONTCTRMANY(X) * Add tests for xonly_pubkey_tweak_add * added secp256k1 as submodule, since we need extrakeys feature of secp256k1 * cleanup * add ton_crypto_core secp256k1 dependency * adjust Dockerfile, android and wasm builds * adjust nix build * test windows build with SECP256K1_ENABLE_MODULE_EXTRAKEYS * test windows build with SECP256K1_ENABLE_MODULE_EXTRAKEYS * adjust android build * adjust emscripten build * adjust emscripten build * try macos-13 * emscripten build adjustments * windows build adjustments * final corrections --------- Co-authored-by: neodix <neodix@ton.org>
36 lines
848 B
YAML
36 lines
848 B
YAML
name: Windows TON build (portable, x86-64)
|
|
|
|
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: |
|
|
git submodule sync --recursive
|
|
git submodule update
|
|
copy assembly\native\build-windows-github-2019.bat .
|
|
copy assembly\native\build-windows-2019.bat .
|
|
build-windows-github-2019.bat Enterprise
|
|
|
|
- name: Upload artifacts
|
|
uses: actions/upload-artifact@master
|
|
with:
|
|
name: ton-win-binaries
|
|
path: artifacts
|