Added code to get tag info #10
@@ -11,6 +11,24 @@ on:
|
|||||||
- devel
|
- devel
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
install_dependencies:
|
||||||
|
# runs-on: ubuntu-latest # Or similar Debian/Ubuntu based runner
|
||||||
|
runs-on: ubuntu-24.04
|
||||||
|
container: rust:1.86.0 # Example using the official Rust image (Debian based)
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3 # Or the Gitea equivalent checkout action
|
||||||
|
|
||||||
|
- name: Install FFmpeg development libraries
|
||||||
|
run: |
|
||||||
|
apt-get update -y
|
||||||
|
apt-get install -y --no-install-recommends \
|
||||||
|
libavutil-dev \
|
||||||
|
libavformat-dev \
|
||||||
|
libavcodec-dev \
|
||||||
|
libswscale-dev \
|
||||||
|
# Add other ffmpeg dev packages if needed by your specific crate
|
||||||
|
rm -rf /var/lib/apt/lists/* # Clean up
|
||||||
|
|
||||||
check:
|
check:
|
||||||
name: Check
|
name: Check
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
|
|||||||
Reference in New Issue
Block a user