Skip to content

Commit

Permalink
xxxx
Browse files Browse the repository at this point in the history
  • Loading branch information
sobomax committed Oct 16, 2024
1 parent c653865 commit 5f94028
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/rtp.io.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ jobs:
env:
PYTHON_VERSION: 3.12
BUILD_OS: ubuntu-latest
outputs:
llvm_ver: ${{ steps.set_outputs.outputs.LLVM_VER }}
llvm_ver_old: ${{ steps.set_outputs.outputs.LLVM_VER_OLD }}

steps:
- name: Set up environment
Expand Down Expand Up @@ -105,14 +108,20 @@ jobs:
DEBIAN_FRONTEND=noninteractive apt-get install -y gpp
sh -x ./test_run.sh
- name: Set LLVM Versions
id: set_outputs
run: |
echo "LLVM_VER=${LLVM_VER}" >> $GITHUB_OUTPUT
echo "LLVM_VER_OLD=${LLVM_VER_OLD}" >> $GITHUB_OUTPUT
build_test_rtp_io_dock:
name: Build & Test OpenSIPS+rtp.io
needs: build_test_rtp_io_quick
uses: ./.github/workflows/.rtp.io.yml
with:
rtpp-tag: ${{ matrix.rtpp-tag }}
llvm-version: ${LLVM_VER}
llvm-version-old: ${LLVM_VER_OLD}
llvm-version: ${{ needs.build_test_rtp_io_quick.outputs.llvm_ver }}
llvm-version-old: ${{ needs.build_test_rtp_io_quick.outputs.llvm_ver_old }}
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit 5f94028

Please sign in to comment.