-
Notifications
You must be signed in to change notification settings - Fork 54
66 lines (54 loc) · 1.4 KB
/
devtools.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
on:
push:
paths-ignore:
- "**.md"
pull_request:
paths-ignore:
- "**.md"
workflow_dispatch:
name: Devtools
env:
AS: nasm
STABLE_RUST_TOOLCHAIN: 1.75.0
NIGHTLY_RUST_TOOLCHAIN: nightly-2023-12-31
TOOLCHAIN_PROFILE: minimal
jobs:
devtools_install:
name: Install
runs-on: ${{ matrix.host_os }}
timeout-minutes: 30
strategy:
matrix:
host_os:
- ubuntu-20.04
- windows-2019
steps:
- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v2
with:
version: "10.0"
directory: ${{ runner.temp }}/llvm
- name: install NASM
uses: ilammy/setup-nasm@v1
- name: Checkout sources
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ env.STABLE_RUST_TOOLCHAIN }}
- name: Install nightly toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ env.NIGHTLY_RUST_TOOLCHAIN }}
- name: Preparation work
run: make preparation
- name: Install devtools
run: make install-devtools
- name: Set PATH
shell: bash
run: |
echo "$GITHUB_WORKSPACE/devtools/bin" >> $GITHUB_PATH
- name: Exec Runner Server
run: test-runner-server -h