Skip to content

Commit

Permalink
docs: remove build docs from test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
noc0lour authored Feb 4, 2024
1 parent 81d992e commit 9599079
Showing 1 changed file with 2 additions and 25 deletions.
27 changes: 2 additions & 25 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -189,32 +189,7 @@ jobs:
- name: test
run: cd build && ctest -V

build-docs:
name: Build VOLK docs
runs-on: ubuntu-latest

steps:
- uses: actions/[email protected]
with:
submodules: 'recursive'
- name: Install dependencies
run: sudo apt install python3-mako liborc-dev doxygen
- name: Configure
run: mkdir build && cd build && cmake -DCMAKE_CXX_FLAGS="-Werror" -DBUILD_EXECUTABLE=ON ..
- name: Build
run: cmake --build build --target volk_doc
- name: Setup SSH Keys
env:
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
run: |
ssh-agent -a $SSH_AUTH_SOCK > /dev/null
ssh-add - <<< "${{ secrets.SSH_KEY }}"
- name: Upload via SSH
run: 'tar -cz build/html/ | ssh $SSH_USER@$SSH_HOST "mkdir -p /www/$(date +%Y.%m.%d); cd /www/$(date +%Y.%m.%d); tar --strip-components=1 -xz; rm /www/live; cd /www; ln -sf $(date +%Y.%m.%d) live;"'
- uses: actions/upload-artifact@v4
with:
name: volk_docs
path: build/html/

build-windows:

Expand Down Expand Up @@ -290,3 +265,5 @@ jobs:
# ./build/apps/volk-config-info --cc
- name: test
run: cd build && ctest -V


0 comments on commit 9599079

Please sign in to comment.