-
Notifications
You must be signed in to change notification settings - Fork 83
84 lines (66 loc) · 2.1 KB
/
mingw.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
name: MinGW-w64 Test
on: [push, pull_request]
jobs:
MinGW-w64-build:
runs-on: ubuntu-latest
env:
CMAKE_GENERATOR: Ninja
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 ninja-build
- uses: actions/checkout@v3 # needed for pr checkout
- uses: sreimers/[email protected]
with:
name: baresip-win32
repo: https://github.com/baresip/baresip-win32
secret: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v3
with:
path: baresip-win32/re
- uses: actions/cache@v2
id: openssl
with:
path: baresip-win32/openssl
key: ${{ runner.os }}-mingw-openssl-3.1.0
- name: "build openssl"
if: steps.openssl.outputs.cache-hit != 'true'
run: |
wget https://www.openssl.org/source/openssl-3.1.0.tar.gz
tar -xzf openssl-3.1.0.tar.gz
mv openssl-3.1.0 baresip-win32/openssl
make -j$(nproc) -C baresip-win32 openssl
- name: "build"
run: |
cd baresip-win32 && make retest
- uses: actions/upload-artifact@v2
with:
name: retest-exe
path: baresip-win32/re/build/test/retest.exe
retention-days: 1
wintest:
runs-on: windows-2019
needs: MinGW-w64-build
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v2
- uses: sreimers/[email protected]
with:
name: re
repo: https://github.com/baresip/re
secret: ${{ secrets.GITHUB_TOKEN }}
- name: "cv2pdb"
run: |
curl -L https://github.com/rainers/cv2pdb/releases/download/v0.52/cv2pdb-0.52.zip --output cv2pdb.zip
unzip -o cv2pdb.zip
shell: bash
- name: "prepare retest.exe"
run: mv retest-exe/retest.exe re/ && cd re && ../cv2pdb.exe ./retest.exe
shell: bash
- name: "run retest.exe"
run: cd re && ./retest.exe -v -ri
shell: bash