Rx thread with separate audio activate #111
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: MinGW-w64 Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
MinGW-w64-build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: fix flaky azure mirrors | |
if: ${{ runner.os == 'Linux' }} | |
run: | | |
sudo sed -i 's/azure\./de\./' /etc/apt/sources.list | |
- name: "install packages" | |
run: | | |
sudo apt-get update && sudo apt-get install -y mingw-w64 | |
- uses: actions/checkout@v3 | |
- uses: sreimers/[email protected] | |
with: | |
name: re | |
repo: https://github.com/baresip/re | |
secret: ${{ secrets.GITHUB_TOKEN }} | |
- uses: sreimers/[email protected] | |
with: | |
name: baresip-win32 | |
repo: https://github.com/baresip/baresip-win32 | |
secret: ${{ secrets.GITHUB_TOKEN }} | |
- name: "prepare baresip-win32 repo" | |
run: | | |
mv re baresip-win32/ | |
- uses: actions/checkout@v3 | |
with: | |
path: baresip-win32/baresip | |
- uses: actions/cache@v2 | |
id: openssl | |
with: | |
path: baresip-win32/openssl | |
key: ${{ runner.os }}-mingw-openssl-3.0.7 | |
- name: "build openssl" | |
if: steps.openssl.outputs.cache-hit != 'true' | |
run: | | |
wget https://www.openssl.org/source/openssl-3.0.7.tar.gz | |
tar -xzf openssl-3.0.7.tar.gz | |
mv openssl-3.0.7 baresip-win32/openssl | |
make -j$(nproc) -C baresip-win32 openssl | |
- name: "build" | |
run: make -j$(nproc) -C baresip-win32 baresip | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: selftest-exe | |
path: baresip-win32/baresip/build/test/selftest.exe | |
retention-days: 1 | |
wintest: | |
runs-on: windows-2019 | |
needs: MinGW-w64-build | |
steps: | |
- uses: actions/download-artifact@v2 | |
- uses: actions/checkout@v3 | |
with: | |
path: baresip | |
- name: "cv2pdb" | |
run: | | |
curl -L https://github.com/rainers/cv2pdb/releases/download/v0.52/cv2pdb-0.52.zip --output cv2pdb.zip | |
unzip cv2pdb.zip | |
ls -lha | |
shell: bash | |
- name: "prepare selftest.exe" | |
run: mv selftest-exe/selftest.exe baresip/ && cd baresip && ../cv2pdb.exe ./selftest.exe | |
shell: bash | |
- name: "run selftest.exe" | |
run: cd baresip && ./selftest.exe | |
shell: bash |