generated from open-ephys-plugins/processor-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (38 loc) · 1.14 KB
/
linux.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
name: linux
on:
push:
tags:
- "*"
env:
plugin_name: "UDPEvents-linux"
tag: "${{ github.ref_name }}"
jobs:
build-linux:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04]
steps:
- uses: actions/checkout@v1
- name: setup
run: |
sudo apt update
cd ../..
git clone https://github.com/open-ephys/plugin-GUI.git --branch main
sudo ./plugin-GUI/Resources/Scripts/install_linux_dependencies.sh
cd plugin-GUI/Build && cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release ..
- name: build
run: |
cd Build
cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release ..
make
- name: versioning
run: |
plugin_api=$(grep -rnw ../../plugin-GUI/Source -e '#define PLUGIN_API_VER' | grep -Eo "[0-9]*" | tail -1)
new_plugin_ver=$tag-API$plugin_api
echo "artifact_name=${plugin_name}_${new_plugin_ver}" >> "$GITHUB_ENV"
- name: upload-artifact
uses: actions/upload-artifact@v4
with:
name: "${{ env.artifact_name }}"
path: "Build/*.so"