Skip to content

Commit

Permalink
build docker
Browse files Browse the repository at this point in the history
  • Loading branch information
qarlosalberto committed Jun 24, 2024
1 parent 40b17b4 commit 53cdbe1
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 26 deletions.
44 changes: 18 additions & 26 deletions .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,18 @@
#
# Copyright 2013-2024 Software Radio Systems Limited
#
# By using this file, you agree to the terms and conditions set
# forth in the LICENSE file which can be found at the top level of
# the distribution.
#

name: C/C++ CI
on: push
jobs:
x86_ubuntu_build:
name: Build on x86
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, ubuntu-20.04]
compiler: [gcc, clang]
steps:
- uses: actions/checkout@v3
- name: Build srsRAN Project on x86 ${{ matrix.os }}
run: |
sudo apt update
sudo apt install -y cmake make gcc g++ pkg-config libfftw3-dev libmbedtls-dev libsctp-dev libyaml-cpp-dev libgtest-dev ninja-build
mkdir build && cd build && cmake -DENABLE_UHD=False -GNinja .. && ninja && ctest
# name: C/C++ CI
# on: push
# jobs:
# x86_ubuntu_build:
# name: Build on x86
# runs-on: ${{ matrix.os }}
# strategy:
# fail-fast: false
# matrix:
# os: [ubuntu-22.04, ubuntu-20.04]
# compiler: [gcc, clang]
# steps:
# - uses: actions/checkout@v3
# - name: Build srsRAN Project on x86 ${{ matrix.os }}
# run: |
# sudo apt update
# sudo apt install -y cmake make gcc g++ pkg-config libfftw3-dev libmbedtls-dev libsctp-dev libyaml-cpp-dev libgtest-dev ninja-build
# mkdir build && cd build && cmake -DENABLE_UHD=False -GNinja .. && ninja && ctest
48 changes: 48 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Docker Build
on:
pull_request:
branches: [main]

jobs:
docker:
runs-on: ubuntu-latest
strategy:
matrix:
include:
# --> split72
# AMD AVX2
- SPLIT: split72
SUFFIX: release_avx2
EXTRA_CMAKE_ARGS: -DAUTO_DETECT_ISA=Off
TAG: amd64-avx2
LIB: dpdk
LIB_VERSION: "23.11"
ARCH: x86-64-v3
PLATFORM: linux/amd64

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Build and push
env:
NAME: srsran_${{ matrix.SPLIT }}_${{ matrix.SUFFIX }}
uses: docker/build-push-action@v6
with:
push: false
tags: |
${{ env.NAME }}:latest
${{ env.NAME }}:${{ github.sha }}
file: ./docker/Dockerfile
platform: ${{ matrix.PLATFORM }}
build-args: |
NAME="srsran_${SPLIT}_${SUFFIX}"
LIB=${{ matrix.LIB }}
LIB_VERSION=${{ matrix.LIB_VERSION }}
ARCH=${{ matrix.ARCH }}

0 comments on commit 53cdbe1

Please sign in to comment.