Remove travis ci and instructions about macOS #80
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: build | |
on: | |
push: | |
branches: "**" | |
pull_request: | |
branches: [ master ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
if: "!contains(github.event.head_commit.message, 'skip ci')" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install libgmp-dev libmpfr-dev libppl-dev libz3-dev | |
- name: Get sources | |
uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Install Rust components | |
run: rustup component add rustc-dev llvm-tools-preview | |
- name: Download LLVM binary | |
run: | | |
wget https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.6/clang+llvm-15.0.6-x86_64-linux-gnu-ubuntu-18.04.tar.xz | |
tar xvf clang+llvm-15.0.6-x86_64-linux-gnu-ubuntu-18.04.tar.xz | |
- name: Build | |
run: | | |
export LIBCLANG_PATH=$(pwd)/clang+llvm-15.0.6-x86_64-linux-gnu-ubuntu-18.04/lib/libclang.so | |
export PATH=$(pwd)/clang+llvm-15.0.6-x86_64-linux-gnu-ubuntu-18.04/bin:$PATH | |
export RUSTFLAGS="-Clink-args=-fuse-ld=lld" | |
cargo build --verbose | |
- name: Run tests | |
run: RUST_TEST_THREADS=1 cargo test --verbose |