-
Notifications
You must be signed in to change notification settings - Fork 22
50 lines (39 loc) · 1.46 KB
/
damocles-worker-util.yaml
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
name: damocles-worker-util
on:
pull_request:
branches: ["main", "release/**", "dev/coop/**"]
paths-ignore: ["*.md", "docs/**"]
push:
branches: ["main", "release/**", "dev/coop/**"]
paths-ignore: ["*.md", "docs/**"]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: dependencies
run: |
sudo apt update && sudo apt install --reinstall ocl-icd-opencl-dev libhwloc-dev -y
wget https://github.com/gnprice/toml-cli/releases/download/v0.2.3/toml-0.2.3-x86_64-linux.tar.gz && tar -xzf toml-0.2.3-x86_64-linux.tar.gz
sudo mv toml-0.2.3-x86_64-linux/toml /usr/local/bin
rm -rf toml-0.2.3-x86_64-linux.tar.gz toml-0.2.3-x86_64-linux
- name: read rust toolchain
id: read-rust-toolchain
run: |
echo "toolchain=$(toml get ./rust-toolchain.toml toolchain.channel --raw)" >> "$GITHUB_OUTPUT"
- name: setup rust
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ steps.read-rust-toolchain.outputs.toolchain }}
override: true
components: rustfmt, clippy
- name: test damocles-worker-util
run: make test-worker-util
- name: build damocles-worker-util
run: make build-worker-util
- name: check damocles-worker-util
run: make check-worker-util
- name: check git dirty
run: make check-git
- name: show bins
run: ls -lha ./dist/bin/