Skip to content

Commit

Permalink
chore: make an unofficial ODR-PadEnc v3.1.0
Browse files Browse the repository at this point in the history
Since there hasn't been a release after this bugfix Opendigitalradio/ODR-PadEnc#16
  • Loading branch information
rmens committed Feb 25, 2025
1 parent 64f89db commit e2c975c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/odr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,29 +41,29 @@ jobs:
arch: "amd64" #GitHub Runners doens't support building on Alpine yet "JavaScript Actions in Alpine containers are only supported on x64 Linux runners. Detected Linux Arm64"
runner: "ubuntu-24.04"
env:
VERSION: "v3.0.0"
VERSION: "v3.1.0"
URL_BASE: "https://github.com/Opendigitalradio"
SOFTWARE: "ODR-PadEnc/archive/refs/tags"
SOFTWARE: "ODR-PadEnc"
BRANCH: "next"
steps:
- name: Install dependencies
run: |
if [ "${{ matrix.os }}" = "alpine" ]; then
apk add --no-cache \
build-base automake autoconf libtool \
imagemagick-dev \
curl
curl git
else
apt-get update && apt-get install -y --no-install-recommends \
build-essential automake libtool \
libmagickwand-dev \
ca-certificates curl && \
ca-certificates curl git && \
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
fi
- name: Download and extract ODR-PadEnc tarball
- name: Clone ODR-PadEnc from next branch
run: |
curl -L ${URL_BASE}/${SOFTWARE}/${VERSION}.tar.gz | tar -xz
mv ODR-PadEnc* ODR-PadEnc
git clone --depth 1 --branch ${BRANCH} ${URL_BASE}/${SOFTWARE}.git
- name: Build ODR-PadEnc
working-directory: ODR-PadEnc
Expand Down Expand Up @@ -223,7 +223,7 @@ jobs:
runs-on: ubuntu-latest
needs: build_padenc
env:
VERSION: "v3.0.0"
VERSION: "v3.1.0"
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down

0 comments on commit e2c975c

Please sign in to comment.