Skip to content

Commit

Permalink
Bump version, linux x86_64 only, https
Browse files Browse the repository at this point in the history
  • Loading branch information
emilong committed Dec 11, 2024
1 parent b12c8c9 commit 5382045
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 147 deletions.
52 changes: 0 additions & 52 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ jobs:
matrix:
arch:
- x86_64
- arm64
env:
ARCH: ${{ matrix.arch }}
steps:
Expand All @@ -20,11 +19,6 @@ jobs:
run: |
sudo apt-get update -y && \
sudo apt-get install -y yasm
- name: Install ARM64 compiler
if: env.ARCH == 'arm64'
run: |
sudo apt-get update -y && \
sudo apt-get install -y gcc-aarch64-linux-gnu
- name: Build
run: ./build-linux.sh
- name: Archive production artifacts
Expand All @@ -33,56 +27,10 @@ jobs:
name: ffmpeg-linux-${{ env.ARCH }}
path: artifacts/

package-windows:
runs-on: ubuntu-20.04
strategy:
matrix:
arch:
- x86_64
env:
ARCH: ${{ matrix.arch }}
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt-get update -y && \
sudo apt-get install -y yasm mingw-w64
- name: Build
run: ./build-windows.sh
- name: Archive production artifacts
uses: actions/upload-artifact@v1
with:
name: ffmpeg-windows-${{ env.ARCH }}
path: artifacts/

package-macos:
runs-on: macos-latest
strategy:
matrix:
# https://developer.apple.com/documentation/apple-silicon/building-a-universal-macos-binary#Update-the-Architecture-List-of-Custom-Makefiles
target:
- x86_64-apple-macos10.9
- arm64-apple-macos11
env:
TARGET: ${{ matrix.target }}
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: brew install yasm
- name: Build
run: ./build-macos.sh
- name: Archive artifacts
uses: actions/upload-artifact@v1
with:
name: ffmpeg-${{ matrix.target }}
path: artifacts/

release:
runs-on: ubuntu-latest
needs:
- package-linux
- package-windows
- package-macos
steps:
- uses: actions/download-artifact@v2
with:
Expand Down
56 changes: 0 additions & 56 deletions build-macos.sh

This file was deleted.

37 changes: 0 additions & 37 deletions build-windows.sh

This file was deleted.

4 changes: 2 additions & 2 deletions common.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/env bash

FFMPEG_VERSION=7.0
FFMPEG_VERSION=7.1
FFMPEG_TARBALL=ffmpeg-$FFMPEG_VERSION.tar.gz
FFMPEG_TARBALL_URL=http://ffmpeg.org/releases/$FFMPEG_TARBALL
FFMPEG_TARBALL_URL=https://ffmpeg.org/releases/$FFMPEG_TARBALL

FFMPEG_CONFIGURE_FLAGS=(
--disable-shared
Expand Down

0 comments on commit 5382045

Please sign in to comment.