-
Notifications
You must be signed in to change notification settings - Fork 58
114 lines (101 loc) · 3.73 KB
/
ci.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
on:
push:
branches:
- master
pull_request:
branches:
- master
name: ci
jobs:
build_test:
name: Build and Test Wrapper
runs-on: ubuntu-18.04
env:
AF_VER: 3.8.0
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup Rust Toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Cache ArrayFire
uses: actions/cache@v1
id: arrayfire
with:
path: afbin
key: ${{ runner.os }}-af-${{ env.AF_VER }}
- name: Download ArrayFire
# Only download and cache arrayfire if already not found
if: steps.arrayfire.outputs.cache-hit != 'true'
run: |
wget --quiet http://arrayfire.s3.amazonaws.com/${AF_VER}/ArrayFire-v${AF_VER}_Linux_x86_64.sh
chmod +x ./ArrayFire-v${AF_VER}_Linux_x86_64.sh
mkdir afbin
./ArrayFire-v${AF_VER}_Linux_x86_64.sh --skip-license --exclude-subdir --prefix=./afbin
rm ./afbin/lib64/libcu*.so*
rm ./afbin/lib64/libafcuda*.so*
rm ./ArrayFire-v${AF_VER}_Linux_x86_64.sh
- name: Build and Run Tests
run: |
export AF_PATH=${GITHUB_WORKSPACE}/afbin
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${AF_PATH}/lib64
echo "Using cargo version: $(cargo --version)"
cargo build --all --all-features
cargo test --no-fail-fast --all-features
format:
name: Format Check
runs-on: ubuntu-18.04
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup Rust Toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt
- name: Run rust fmt tool
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
clippy:
name: Clippy Lints
runs-on: ubuntu-18.04
env:
AF_VER: 3.8.0
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup Rust Toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: clippy
- name: Cache ArrayFire
uses: actions/cache@v1
id: arrayfire
with:
path: afbin
key: ${{ runner.os }}-af-${{ env.AF_VER }}
- name: Download ArrayFire
# Only download and cache arrayfire if already not found
if: steps.arrayfire.outputs.cache-hit != 'true'
run: |
wget --quiet http://arrayfire.s3.amazonaws.com/${AF_VER}/ArrayFire-v${AF_VER}_Linux_x86_64.sh
chmod +x ./ArrayFire-v${AF_VER}_Linux_x86_64.sh
mkdir afbin
./ArrayFire-v${AF_VER}_Linux_x86_64.sh --skip-license --exclude-subdir --prefix=./afbin
rm ./afbin/lib64/libcu*.so*
rm ./afbin/lib64/libafcuda*.so*
rm ./ArrayFire-v${AF_VER}_Linux_x86_64.sh
- name: Run clippy tool
env:
AF_PATH: ${{ github.workspace }}/afbin
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all