-
Notifications
You must be signed in to change notification settings - Fork 98
120 lines (115 loc) · 4.24 KB
/
push-build-check.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# This is a basic workflow to help you get started with Actions
name: push-build-check
# Controls when the workflow will run
on: push
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build-windows-x86:
# The type of runner that the job will run on
runs-on: windows-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- name: install qt static
uses: orestonce/install-qt@main
with:
version: Qt5.6.3-Windows-x86-MinGW4.9.4-staticFull-20200104
- name: Setup Go environment
uses: actions/[email protected]
with:
# The Go version to download (if necessary) and use. Supports semver spec and ranges.
go-version: 1.18 # optional
- name: build
run: |
go mod tidy
go run export/main.go build-cli
go run export/main.go create-qt-lib 386 c-archive
cd m3u8d-qt && qmake && mingw32-make release && cd ..
dir m3u8d-qt\release\m3u8d-qt.exe
build-windows-x64:
runs-on: windows-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- name: install qt static
uses: orestonce/install-qt@main
with:
version: Qt5.15.7-Windows-x86_64-MinGW8.1.0-staticFull-20221104
- name: Setup Go environment
uses: actions/[email protected]
with:
# The Go version to download (if necessary) and use. Supports semver spec and ranges.
go-version: 1.18 # optional
- name: build
run: |
go mod tidy
go run export/main.go create-qt-lib amd64 c-archive
cd m3u8d-qt && qmake && mingw32-make release && cd ..
dir m3u8d-qt\release\m3u8d-qt.exe
build-macos-arm64:
runs-on: macos-14
steps:
- uses: actions/checkout@v3
- name: install qt
uses: orestonce/install-qt@main
with:
version: Qt5.15.14-macOS-Universal-AppleClang15.0.0-noFramework-20240527
- name: Setup Go environment
uses: actions/[email protected]
with:
# The Go version to download (if necessary) and use. Supports semver spec and ranges.
go-version: 1.18 # optional
- name: build
run: |
set -x
set -e
go mod tidy
go run export/main.go create-qt-lib arm64 c-shared
cd m3u8d-qt && qmake && make && cd ..
find . | grep -v qt_install
cd m3u8d-qt
install_name_tool -change m3u8d-impl @executable_path/m3u8d-impl m3u8d-qt.app/Contents/MacOS/m3u8d-qt
cp m3u8d-impl m3u8d-qt.app/Contents/MacOS/
macdeployqt m3u8d-qt.app -dmg
ls -alh m3u8d-qt.dmg
build-macos-amd64:
runs-on: macos-13
steps:
- uses: actions/checkout@v3
- name: install qt
uses: orestonce/install-qt@main
with:
version: Qt5.15.6-macOS-x86_64-AppleClang12.0.5-noFramework-20220914
- name: Setup Go environment
uses: actions/[email protected]
with:
# The Go version to download (if necessary) and use. Supports semver spec and ranges.
go-version: 1.18 # optional
- name: build
run: |
set -x
set -e
go mod tidy
go run export/main.go create-qt-lib amd64 c-shared
pwd
cd m3u8d-qt
rm -f m3u8d-qt.pro.user
pwd
find `pwd`
export QMAKE_XCODE_DEVELOPER_PATH="/Applications/Xcode.app/Contents/Developer"
# xcode-select --install
echo $QMAKE_XCODE_DEVELOPER_PATH
find /Applications/Xcode.app/Contents/Developer
qmake -project
make
pwd
cd ..
pwd
find . | grep -v qt_install
# cd m3u8d-qt
# install_name_tool -change m3u8d-impl @executable_path/m3u8d-impl m3u8d-qt.app/Contents/MacOS/m3u8d-qt
# cp m3u8d-impl m3u8d-qt.app/Contents/MacOS/
# macdeployqt m3u8d-qt.app -dmg
# ls -alh m3u8d-qt.dmg