mirror of
https://github.com/tkmxqrdxddd/davinci-video-converter
synced 2025-11-08 18:45:05 +01:00
34 lines
812 B
YAML
34 lines
812 B
YAML
name: C/C++ CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Install Dependencies
|
|
run: sudo apt-get install -y build-essential ffmpeg wget
|
|
|
|
- name: Create Tests Directory
|
|
run: mkdir -p tests # Create the tests directory if it doesn't exist
|
|
|
|
- name: Download Sample Video
|
|
run: wget -O tests/sample_video.mp4 https://sample-videos.com/video123/mp4/720/big_buck_bunny_720p_1mb.mp4
|
|
|
|
- name: Build
|
|
run: |
|
|
g++ -o davinci-convert src/main.cpp -lstdc++fs
|
|
|
|
- name: Run
|
|
run: |
|
|
echo "Running the Video Converter..."
|
|
./davinci-convert tests/sample_video.mp4 --output tests/output/video.mov
|