add appimages to release (for testing) #50
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: Ubuntu TON build (portable, x86-64) | |
on: [push,workflow_dispatch,workflow_call] | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- name: Install system libraries | |
run: | | |
sudo apt update | |
sudo apt install -y build-essential git cmake ninja-build libc++-dev libc++abi-dev | |
sudo apt remove libgsl-dev | |
- if: matrix.os != 'ubuntu-24.04' | |
run: | | |
wget https://apt.llvm.org/llvm.sh | |
chmod +x llvm.sh | |
sudo ./llvm.sh 16 all | |
- name: Build TON | |
run: | | |
git submodule sync --recursive | |
git submodule update | |
cp assembly/native/build-ubuntu-portable.sh . | |
chmod +x build-ubuntu-portable.sh | |
./build-ubuntu-portable.sh -t -a | |
- name: Upload artifacts | |
uses: actions/upload-artifact@master | |
with: | |
name: ton-binaries-${{ matrix.os }} | |
path: artifacts |