Skip to content

Commit f9c7eca

Browse files
repo: add github issue template and basic build actions
1 parent d46d490 commit f9c7eca

File tree

2 files changed

+42
-0
lines changed

2 files changed

+42
-0
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<!--
2+
Before filing an issue, search for solutions here:
3+
- srsRAN Project discussions page (https://github.com/srsran/srsRAN_Project/discussions)
4+
-->
5+
6+
## Issue Description ##
7+
[Describe the issue in detail]
8+
9+
## Setup Details ##
10+
[Specify details of the test setup. This would help us reproduce the problem reliably]
11+
e.g. Network configuration, Operation System, Hardware, RF front-end, library and driver versions
12+
13+
## Expected Behavior ##
14+
[What you expect to happen]
15+
16+
## Actual Behaviour ##
17+
[What happens instead e.g. error message]
18+
19+
## Steps to reproduce the problem ##
20+
[Tell us how to reproduce this issue e.g. RF setup, application config files]
21+
22+
## Additional Information ##
23+
[Any additional information, configuration or data that might be necessary to reproduce the issue]
24+

.github/workflows/ccpp.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: C/C++ CI
2+
on: push
3+
jobs:
4+
x86_ubuntu_build:
5+
name: Build on x86
6+
runs-on: ${{ matrix.os }}
7+
strategy:
8+
fail-fast: false
9+
matrix:
10+
os: [ubuntu-22.04, ubuntu-20.04]
11+
compiler: [gcc, clang]
12+
steps:
13+
- uses: actions/checkout@v3
14+
- name: Build srsRAN Project on x86 ${{ matrix.os }}
15+
run: |
16+
sudo apt update
17+
sudo apt install -y cmake make gcc g++ pkg-config libfftw3-dev libmbedtls-dev libsctp-dev libyaml-cpp-dev libgtest-dev ninja-build
18+
mkdir build && cd build && cmake -DENABLE_UHD=False -GNinja .. && ninja && ctest

0 commit comments

Comments
 (0)