-
Notifications
You must be signed in to change notification settings - Fork 43
178 lines (171 loc) · 6.57 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
name: CI
on: [ push, pull_request ]
env:
RUSTFLAGS: "-Dwarnings"
CARGO_INCREMENTAL: 0
RUST_BACKTRACE: 1
jobs:
set-msrv:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Extract MSRV from Cargo.toml
run: MSRV=$(cargo metadata --format-version 1 --no-deps | jq -r '.packages[0].rust_version')
- name: Set MSRV as output
id: msrv
#run: echo "MSRV=$MSRV" >> "$GITHUB_OUTPUT"
run: echo "MSRV=1.70" >> "$GITHUB_OUTPUT"
## NOTE vmx 2022-06-14: currently doesn't work, hence run it on CircleCI
## for now.
#linux_foreign:
# strategy:
# matrix:
# include:
# # 64-bit Linux/arm64
# - target: aarch64-unknown-linux-gnu
# rust: nightly
# arch: aarch64
#
# runs-on: ubuntu-22.04
# steps:
# - uses: actions/checkout@v4
# - uses: uraimo/[email protected]
# name: Run commands
# id: runcmd
# with:
# arch: aarch64
# distro: ubuntu18.04
#
# # Not required, but speeds up builds by storing container images in
# # a GitHub package registry.
# githubToken: ${{ github.token }}
#
# install: |
# apt-get update -q -y
# apt-get install -q -y ocl-icd-opencl-dev curl build-essential git
# curl https://sh.rustup.rs -sSf | sh -s -- --profile minimal --default-toolchain ${{ matrix.rust }} -y
# source $HOME/.cargo/env
#
# run: |
# $HOME/.cargo/bin/cargo test --config net.git-fetch-with-cli=true --release --no-default-features --features pairing,multicore --target ${{ matrix.target }}
# $HOME/.cargo/bin/cargo test --config net.git-fetch-with-cli=true --release --no-default-features --features blst,multicore --target ${{ matrix.target }}
# $HOME/.cargo/bin/cargo test --config net.git-fetch-with-cli=true --release --no-default-features --features blst,multicore,blst-portable --target ${{ matrix.target }}
# # Linux tests
# linux:
# needs: set-msrv
# strategy:
# matrix:
# include:
# # 32-bit Linux/x86
# #- target: i686-unknown-linux-gnu
# # toolchain: ${{needs.set-msrv.steps.msrv.outputs.MSRV}}
# # deps: sudo apt update && sudo apt install gcc-multilib
# - target: i686-unknown-linux-gnu
# toolchain: stable
# deps: sudo apt update && sudo apt install gcc-multilib
#
# # 64-bit Linux/x86_64
# #- target: x86_64-unknown-linux-gnu
# # toolchain: ${{needs.set-msrv.steps.msrv.outputs.MSRV}}
# - target: x86_64-unknown-linux-gnu
# toolchain: stable
#
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: dtolnay/rust-toolchain@master
# with:
# toolchain: ${{ matrix.toolchain }}
# targets: ${{ matrix.target }}
# - name: Install opencl
# run: sudo apt-get install -y ocl-icd-opencl-dev
# - run: ${{ matrix.deps }}
# - run: cargo test --target ${{ matrix.target }} --no-default-features --features pairing,multicore
# - run: cargo test --target ${{ matrix.target }} --no-default-features --features pairing
# - run: cargo test --target ${{ matrix.target }} --no-default-features --features blst
# - run: cargo test --target ${{ matrix.target }} --no-default-features --features blst,multicore
# - run: cargo test --target ${{ matrix.target }} --no-default-features --features blst,blst-portable
# - run: cargo test --target ${{ matrix.target }} --no-default-features --features blst,multicore,blst-portable
#
#
# # macOS tests
# macos:
# needs: set-msrv
# strategy:
# matrix:
# toolchain:
# - ${{needs.set-msrv.steps.msrv.outputs.MSRV}}
# - stable
#
# runs-on: macos-latest
# steps:
# - uses: actions/checkout@v4
# - uses: dtolnay/rust-toolchain@master
# with:
# toolchain: ${{ matrix.toolchain }}
# target: x86_64-apple-darwin
# - run: cargo test --no-default-features --features pairing,multicore
# - run: cargo test --no-default-features --features pairing
# - run: cargo test --no-default-features --features blst
# - run: cargo test --no-default-features --features blst,multicore
# - run: cargo test --no-default-features --features blst,blst-portable
# - run: cargo test --no-default-features --features blst,multicore,blst-portable
#
# # Windows tests
# windows:
# needs: set-msrv
# strategy:
# matrix:
# include:
# # 64-bit Windows (MSVC)
# - target: x86_64-pc-windows-msvc
# toolchain: ${{needs.set-msrv.steps.msrv.outputs.MSRV}}
#
# runs-on: windows-latest
# steps:
# - uses: actions/checkout@v4
# - uses: dtolnay/rust-toolchain@master
# with:
# toolchain: ${{ matrix.toolchain }}
# targets: ${{ matrix.target }}
# - uses: msys2/setup-msys2@v2
# - run: cargo test --target ${{ matrix.target }} --no-default-features --features pairing,multicore
# - run: cargo test --target ${{ matrix.target }} --no-default-features --features pairing
# - run: cargo test --target ${{ matrix.target }} --no-default-features --features blst
# - run: cargo test --target ${{ matrix.target }} --no-default-features --features blst,multicore
# - run: cargo test --target ${{ matrix.target }} --no-default-features --features blst,blst-portable
# - run: cargo test --target ${{ matrix.target }} --no-default-features --features blst,multicore,blst-portable
clippy_check_blst:
needs: set-msrv
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
#toolchain: ${{needs.set-msrv.steps.msrv.outputs.MSRV}}
toolchain: 1.67.1
components: clippy
- name: Run Clippy
run: cargo clippy --workspace --all-targets --no-default-features --features blst,multicore -- -D warnings
#clippy_check_pairing:
# needs: set-msrv
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: dtolnay/rust-toolchain@master
# with:
# toolchain: ${{needs.set-msrv.steps.msrv.outputs.MSRV}}
# components: clippy
# - name: Run Clippy
# run: cargo clippy --workspace --all-targets -- -D warnings
#
#check_fmt_and_docs:
# name: Checking fmt and docs
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: dtolnay/rust-toolchain@master
# with:
# components: rustfmt
# - name: fmt
# run: cargo fmt --all -- --check