-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (35 loc) · 1.05 KB
/
test7.yml
File metadata and controls
45 lines (35 loc) · 1.05 KB
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
name: 1. MacOS 26 qt6.11 ARM f7 cmake C/C++ CI
on:
workflow_dispatch:
jobs:
build:
runs-on: macos-26
steps:
- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
version: 6.11.*
modules: 'qtcharts'
- name: Setup FFmpeg
uses: AnimMouse/setup-ffmpeg@v1
with:
version: 81
- uses: actions/checkout@v6
- name: cmake
run: cmake -S ./ -B ./ -DCMAKE_OSX_ARCHITECTURES="arm64"
- name: make
run: make
- name: Make CaptureStream2 executable
run: |
wget -qO ffmpeg7arm.zip https://www.osxexperts.net/ffmpeg81arm.zip
7z e ffmpeg7arm.zip ffmpeg -o./CaptureStream2.app/Contents/MacOS/
chmod -R 755 ./CaptureStream2.app
xattr -rc ./CaptureStream2.app
- name: mkdir
run: mkdir -p ./build/MacCaptureStream2
- name: Tar files
run: tar cvf CaptureStream2.tar ./CaptureStream2.app
- uses: actions/upload-artifact@v4
with:
name: CaptureStream2-ARM-qt65
path: CaptureStream2.tar