1
0
Fork 0
mirror of https://github.com/ton-blockchain/ton synced 2025-03-09 15:40:10 +00:00

install missing headers on ubuntu 20.04

This commit is contained in:
neodiX 2024-12-18 23:29:19 +04:00
parent 3a0f0b53f5
commit ae2179cfb7
2 changed files with 7 additions and 1 deletions

View file

@ -21,6 +21,12 @@ jobs:
sudo apt-get update
sudo apt-get install -y build-essential git cmake ninja-build libc++-dev libc++abi-dev
- if: matrix.os == 'ubuntu-20.04'
run: |
sudo apt install -y manpages-dev software-properties-common
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt update && sudo apt install gcc-11 g++-11
- name: Build TON
run: |
git submodule sync --recursive

View file

@ -1,4 +1,4 @@
name: Ubuntu TON build (portable, x86-64)
name: Ubuntu TON build (nixpkgs, x86-64)
on: [push,workflow_dispatch,workflow_call]