Skip to content

Commit 75c94ab

Browse files
committed
add libyuv workflow
1 parent a62b814 commit 75c94ab

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

.github/workflows/all.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@ jobs:
1818
uses: actions/checkout@v4
1919
- name: One Step
2020
run: |
21+
echo '------compile yuv------------------------------------'
22+
.github/workflows/onestep.sh yuv all
2123
echo '------compile unibreak------------------------------------'
24+
rm -rf build || git reset --hard || git pull origin
2225
.github/workflows/onestep.sh unibreak all
2326
echo '------compile fribidi------------------------------------'
2427
rm -rf build || git reset --hard || git pull origin

.github/workflows/yuv.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
on:
2+
# push:
3+
# branches: [master]
4+
workflow_dispatch:
5+
pull_request:
6+
branches: [master]
7+
8+
name: Create yuv Release
9+
10+
jobs:
11+
build:
12+
name: compile yuv then deploy
13+
runs-on: macos-14
14+
env:
15+
GH_TOKEN: ${{ github.token }}
16+
steps:
17+
- name: Checkout code
18+
uses: actions/checkout@v4
19+
- name: One Step
20+
run: .github/workflows/onestep.sh yuv all

0 commit comments

Comments
 (0)