alpha
Login
or
Join now
jeamy.tngl.sh
/
wildcam
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
About Multi-camera viewer optimized for RTSP streams
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
build
author
Jeamy
date
3 months ago
(Mar 27, 2026, 12:00 PM +0100)
commit
f4a0e7ac
f4a0e7ac97d7fd01b58eca650c2041223db5cc57
parent
8189f152
8189f1523b1e91c23e7584edad9d45a353e10456
+4
-2
1 changed file
Expand all
Collapse all
Unified
Split
.github
workflows
build.yml
+4
-2
.github/workflows/build.yml
Reviewed
···
70
70
platform: linux
71
71
- os: windows-latest
72
72
platform: windows
73
73
+
- os: macos-15-intel
74
74
+
platform: macos-intel
73
75
- os: macos-15
74
74
-
platform: macos
76
76
+
platform: macos-silicon
75
77
76
78
steps:
77
79
- name: Checkout
···
115
117
if: runner.os == 'macOS'
116
118
run: |
117
119
chmod +x scripts/build_macos.sh
118
118
-
PYTHON_BIN=python PLATFORM=macos ARTIFACT_SUFFIX=${{ needs.prepare.outputs.tag }} ./scripts/build_macos.sh
120
120
+
PYTHON_BIN=python PLATFORM=${{ matrix.platform }} ARTIFACT_SUFFIX=${{ needs.prepare.outputs.tag }} ./scripts/build_macos.sh
119
121
120
122
- name: Build on Windows
121
123
if: runner.os == 'Windows'