forked from spiceai/spiceai
-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (45 loc) · 1.25 KB
/
makefile_targets.yml
File metadata and controls
57 lines (45 loc) · 1.25 KB
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
name: Makefile Targets
on:
push:
branches:
- trunk
- release/*
pull_request:
branches:
- trunk
workflow_dispatch:
concurrency:
# Allow only one workflow per any non-trunk branch.
group: ${{ github.workflow }}-${{ github.ref_name }}-${{ github.ref_name == 'trunk' && github.sha || 'any-sha' }}
cancel-in-progress: true
jobs:
make_install:
name: make install*
runs-on: spiceai-dev-runners
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
- name: Set up Rust
uses: ./.github/actions/setup-rust
- name: Set up make
uses: ./.github/actions/setup-make
- name: Set up cc
uses: ./.github/actions/setup-cc
- name: Install Protoc
uses: arduino/setup-protoc@c65c819552d16ad3c9b72d9dfd5ba5237b9c906b # v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: make install-dev
run: |
make install-dev
- name: make install
run: |
make install
- name: make install-cli
run: |
make install-cli
- name: make install-runtime
run: |
make install-runtime
- name: make install-odbc
run: |
make install-odbc