Move low blockrate lt_limits to appropriate place (#828) #157
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: TON WASM Compile | |
on: [push,workflow_dispatch,workflow_call] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- name: Install libraries | |
run: | | |
sudo apt update | |
sudo apt install -y build-essential git make cmake ninja-build clang libgflags-dev zlib1g-dev libssl-dev libreadline-dev libmicrohttpd-dev pkg-config libgsl-dev python3 python3-dev python3-pip nodejs libsecp256k1-dev libsodium-dev automake libtool | |
- name: Setup compiler | |
run: | | |
wget https://apt.llvm.org/llvm.sh | |
chmod +x llvm.sh | |
sudo ./llvm.sh 16 all | |
- name: Configure & Build | |
run: | | |
cd .github/script | |
./fift-func-wasm-build-ubuntu.sh | |
- name: Find & copy binaries | |
run: | | |
mkdir artifacts | |
ls build/crypto | |
cp build/crypto/fift* artifacts | |
cp build/crypto/func* artifacts | |
cp build/crypto/tlbc* artifacts | |
cp build/emulator/emulator-emscripten* artifacts | |
cp -R crypto/smartcont artifacts | |
cp -R crypto/fift/lib artifacts | |
- name: Upload artifacts | |
uses: actions/upload-artifact@master | |
with: | |
name: ton-wasm-binaries | |
path: artifacts |