-
Notifications
You must be signed in to change notification settings - Fork 7
41 lines (36 loc) · 1.07 KB
/
rust.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build-ubuntu-x86:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install LLVM
run: curl -sSL --output llvm.tar.xz https://github.com/llvm/llvm-project/releases/download/llvmorg-18.1.4/clang+llvm-18.1.4-x86_64-linux-gnu-ubuntu-18.04.tar.xz
- name: Extract LLVM
run: |
tar Jxf llvm.tar.xz
mv clang+llvm-18.1.4-x86_64-linux-gnu-ubuntu-18.04 llvm18/
- name: Add LLVM to Path
run: echo "$(pwd)/llvm18/bin" >> $GITHUB_PATH
- name: Dependencies
run: |
sudo apt update && sudo apt install -y libtinfo5
- name: Perm
run: chmod +x "$(pwd)/llvm18/bin/llvm-config"
- name: Format
run: make format
- name: dbg
run: echo $PATH; ls -al $(pwd)/llvm18/; which llvm-config; llvm-config --version
- name: Clippy
run: |
export PATH=$(pwd)/llvm18/bin:$PATH
make clippy
- name: Integration
run: make test-integration