Skip to content

Commit

Permalink
Only build modules that we use.
Browse files Browse the repository at this point in the history
  • Loading branch information
sobomax committed Oct 7, 2024
1 parent ca547cf commit c8a93fa
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/rtp.io.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,17 @@ jobs:
sh -x scripts/build/install_depends.sh
- name: Build
run: sh -x scripts/build/do_build.sh
run: |
KEEP_MODULES="dialog sipmsgops sl tm rr maxfwd rtp.io rtpproxy textops usrloc event_routing"
mkdir tmp
cd modules
mv ${KEEP_MODULES} ../tmp
rm -rf *
cd ../tmp
mv ${KEEP_MODULES} ../modules
cd ..
rmdir tmp
sh -x scripts/build/do_build.sh
- name: Build rtp.io module
run: |
Expand Down

0 comments on commit c8a93fa

Please sign in to comment.