-
Notifications
You must be signed in to change notification settings - Fork 5
30 lines (28 loc) · 811 Bytes
/
Copy pathbuild.yml
File metadata and controls
30 lines (28 loc) · 811 Bytes
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
name: Build AAC Encoder Plugin
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y build-essential pkg-config libavcodec-dev libavutil-dev libc++-dev libc++abi-dev
- name: Build plugin
run: |
make clean && make
./build.sh
- name: Prepare artifact
run: |
mkdir -p artifact
cp -r aac_encoder_plugin.dvcp.bundle artifact/
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: aac_encoder_plugin-bundle
path: artifact/aac_encoder_plugin.dvcp.bundle