-
Notifications
You must be signed in to change notification settings - Fork 5
47 lines (41 loc) · 1.2 KB
/
build-plugins-linux.yml
File metadata and controls
47 lines (41 loc) · 1.2 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
name: Build CDE plugins for Linux x86_64
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
# Generate the CDE plugin (SO) for the GPR example.
- name: Build the GPR plugin
run: |
cd GPR/plugin
make
# Upload the generated cde_plugin.so as cde_plugin_aci_gpr-linux_x86_64.so artifact.
# Set the maximum retention period of 90 days.
- name: Upload the GPR plugin
uses: actions/upload-artifact@v4
with:
name: cde_plugin_aci_gpr-linux_x86_64.so
path: GPR/plugin/build/cde_plugin.so
retention-days: 90
# Generate the CDE plugin (SO) for the MVE example.
- name: Build the MVE plugin
run: |
cd MVE/plugin
make
# Upload the generated cde_plugin.so as cde_plugin_aci_mve-linux_x86_64.so artifact.
# Set the maximum retention period of 90 days.
- name: Upload the MVE plugin
uses: actions/upload-artifact@v4
with:
name: cde_plugin_aci_mve-linux_x86_64.so
path: MVE/plugin/build/cde_plugin.so
retention-days: 90