Suppress clang warning "ATOMIC_FLAG_INIT marked deprecated" #499
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: Emscripten TON build (wasm) | |
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 system libraries | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y build-essential git openssl cmake ninja-build zlib1g-dev libssl-dev libsecp256k1-dev libmicrohttpd-dev libsodium-dev liblz4-dev libjemalloc-dev | |
- name: Build TON WASM artifacts | |
run: | | |
git submodule sync --recursive | |
git submodule update | |
cp assembly/wasm/fift-func-wasm-build-ubuntu.sh . | |
chmod +x fift-func-wasm-build-ubuntu.sh | |
./fift-func-wasm-build-ubuntu.sh -a | |
- name: Prepare test | |
run: | | |
cp assembly/wasm/*.fc . | |
git clone https://github.com/ton-community/func-js.git | |
cd func-js | |
npm install | |
npm run build | |
npm link | |
- name: Test TON WASM artifacts | |
run: | | |
base64 -w 0 artifacts/funcfiftlib.wasm > artifacts/funcfiftlib.wasm.js | |
printf "module.exports = { FuncFiftLibWasm: '" | cat - artifacts/funcfiftlib.wasm.js > temp.txt && mv temp.txt artifacts/funcfiftlib.wasm.js | |
echo "'}" >> artifacts/funcfiftlib.wasm.js | |
cp artifacts/funcfiftlib.wasm.js func-js/node_modules/@ton-community/func-js-bin/dist/funcfiftlib.wasm.js | |
cp artifacts/funcfiftlib.js func-js/node_modules/@ton-community/func-js-bin/dist/funcfiftlib.js | |
npx func-js stdlib.fc intrinsics.fc --fift ./output.f | |
- name: Upload artifacts | |
uses: actions/upload-artifact@master | |
with: | |
name: ton-wasm | |
path: artifacts |