Skip to content

Commit

Permalink
Removed legacy release packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
adlerjan committed Jun 7, 2024
1 parent c29f4aa commit e8b1f91
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 31 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ jobs:
sudo apt-get install -y build-essential octave portaudio19-dev python-dev-is-python3
export MAKEFLAGS="-j $(grep -c ^processor /proc/cpuinfo)"
pip install -e .[develop,test,documentation,quadriga,uhd,audio]
python -m setup develop
- name: Run unit tests
run: |
Expand Down
33 changes: 4 additions & 29 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,39 +1,14 @@
name: Create Release
name: Publish Documentation

on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'

jobs:
GitHub-Release:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
lfs: true
submodules: recursive

- name: Changelog
uses: scottbrenner/generate-changelog-action@master
id: Changelog
env:
REPO: ${{ github.repository }}
env:
HERMES_QUADRIGA: ${{ github.workspace }}/submodules/quadriga/quadriga_src

- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: |
${{ steps.Changelog.outputs.changelog }}
draft: false
prerelease: false
jobs:

Documentation-Release:

Expand Down
2 changes: 1 addition & 1 deletion submodules/affect
Submodule affect updated 45 files
+1 −1 LICENSE
+3 −0 doc/requirements.txt
+1 −1 doc/source/conf.py
+2 −2 include/Module/Channel/Channel.hpp
+1 −1 include/Module/Decoder/Decoder_HIHO.hpp
+1 −1 include/Module/Decoder/Decoder_SIHO.hpp
+1 −1 include/Module/Decoder/Decoder_SISO.hpp
+1 −1 include/Module/Decoder/LDPC/BP/Decoder_LDPC_BP.hpp
+1 −1 include/Module/Decoder/LDPC/BP/Flooding/Decoder_LDPC_BP_flooding.hpp
+1 −1 include/Module/Decoder/LDPC/BP/Flooding/Decoder_LDPC_BP_flooding_inter.hpp
+1 −1 include/Module/Decoder/LDPC/BP/Flooding/Decoder_LDPC_BP_flooding_inter.hxx
+1 −1 include/Module/Decoder/LDPC/BP/Horizontal_layered/Decoder_LDPC_BP_horizontal_layered.hpp
+1 −1 include/Module/Decoder/LDPC/BP/Horizontal_layered/Decoder_LDPC_BP_horizontal_layered_inter.hpp
+6 −6 include/Module/Decoder/LDPC/BP/Horizontal_layered/Decoder_LDPC_BP_horizontal_layered_inter.hxx
+1 −1 include/Module/Decoder/LDPC/BP/Horizontal_layered/ONMS/Decoder_LDPC_BP_horizontal_layered_ONMS_inter.hpp
+1 −1 include/Module/Decoder/LDPC/BP/Peeling/Decoder_LDPC_BP_peeling.hpp
+1 −1 include/Module/Decoder/LDPC/BP/Vertical_layered/Decoder_LDPC_BP_vertical_layered.hpp
+1 −1 include/Module/Decoder/LDPC/BP/Vertical_layered/Decoder_LDPC_BP_vertical_layered_inter.hpp
+6 −6 include/Module/Decoder/LDPC/BP/Vertical_layered/Decoder_LDPC_BP_vertical_layered_inter.hxx
+4 −4 include/Module/Decoder/RS/Decoder_RS.hpp
+1 −1 include/Module/Encoder/Encoder.hpp
+7 −7 include/Module/Modem/Modem.hpp
+3 −0 include/Module/Module.hpp
+4 −4 include/Module/Puncturer/Puncturer.hpp
+4 −4 include/Module/Puncturer/Puncturer.hxx
+6 −0 include/Module/Socket.hpp
+40 −0 include/Module/Socket.hxx
+1 −1 include/Module/Source/Source.hpp
+20 −8 include/Module/Switcher/Switcher.hpp
+57 −19 include/Module/Switcher/Switcher.hxx
+6 −0 include/Module/Task.hpp
+1 −1 include/Tools/Sequence/Pipeline.hpp
+17 −6 include/Tools/Sequence/Sequence.hpp
+1 −1 lib/MIPP
+8 −7 src/Module/Decoder/RS/Decoder_RS.cpp
+2 −1 src/Module/Decoder/RS/Standard/Decoder_RS_std.cpp
+8 −1 src/Module/Extractor/RSC/Extractor_RSC.cpp
+32 −0 src/Module/Module.cpp
+29 −0 src/Module/Task.cpp
+13 −3 src/Simulation/BFER/Iterative/Simulation_BFER_ite.cpp
+26 −13 src/Simulation/BFER/Standard/Simulation_BFER_std.cpp
+7 −0 src/Tools/Sequence/Pipeline.cpp
+165 −28 src/Tools/Sequence/Sequence.cpp
+5 −5 src/Tools/system_functions.cpp
+1 −1 src/main.cpp

0 comments on commit e8b1f91

Please sign in to comment.