Skip to content

Commit

Permalink
ci/build: remove obsolete rem (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
cspiel1 authored Oct 16, 2023
1 parent 9b91bce commit f8b16c8
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,27 +75,19 @@ jobs:
repo: https://github.com/baresip/re
secret: ${{ secrets.GITHUB_TOKEN }}

- uses: sreimers/[email protected]
with:
name: rem
repo: https://github.com/baresip/rem
secret: ${{ secrets.GITHUB_TOKEN }}

- uses: sreimers/[email protected]
with:
name: baresip
repo: https://github.com/baresip/baresip
secret: ${{ secrets.GITHUB_TOKEN }}

- name: make re/rem/baresip
- name: make re/baresip
run: |
for p in re rem; do
cmake -S $p -B $p/build
cmake --build $p/build -j
done
cmake -S re -B re/build
cmake --build re/build -j
cmake -S baresip -B baresip/build -DMODULES=
cmake --build baresip/build -j -t baresip
for p in re rem baresip; do
for p in re baresip; do
mv $p ../.
done
Expand Down

0 comments on commit f8b16c8

Please sign in to comment.