Migrate to Github Actions CI

This commit is contained in:
offa
2022-09-29 20:29:40 +02:00
parent 7fa59cf555
commit 23fce5ffaa
2 changed files with 93 additions and 0 deletions

12
scripts/ci_setup_clang.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
set -ex
VERSION=$1
apt-get update
apt-get install -y libc++-${VERSION}-dev libc++abi-${VERSION}-dev
if [[ "${VERSION}" -ge 12 ]]; then
apt-get install -y --no-install-recommends libunwind-${VERSION}-dev
fi