llvm-sys 140.1.3

Bindings to LLVM's C API
Documentation
image: rust:buster

variables:
  LLVM_SYS_140_FFI_WORKAROUND: "YES"

before_script:
  - apt-get update -qq && apt-get install -qq -y lsb-release software-properties-common
  - wget https://apt.llvm.org/llvm.sh
  - chmod +x llvm.sh
  - ./llvm.sh 14
  - apt-get install -y libpolly-14-dev

test:
  script:
    - cargo build
    - cargo test
    - cargo run --example nop-function
    - cargo run --example jit-function
    - echo "Hello, world!" | cargo run --example disassembler