mirror of
https://github.com/alexpasmantier/television.git
synced 2025-06-07 03:55:23 +00:00
ci(deb): temporarily disable old compatibility builds (#385)
fix(ci): rollback recent changes to cd
This commit is contained in:
parent
c0bd696d18
commit
e26bd5919f
134
.github/workflows/cd.yml
vendored
134
.github/workflows/cd.yml
vendored
@ -1,13 +1,11 @@
|
|||||||
name: CD # Continuous Deployment
|
name: CD # Continuous Deployment
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
tags:
|
tags:
|
||||||
- '[v]?[0-9]+.[0-9]+.[0-9]+'
|
- '[v]?[0-9]+.[0-9]+.[0-9]+'
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
create-release:
|
create-release:
|
||||||
name: Create a release
|
name: Create a release
|
||||||
@ -19,7 +17,6 @@ jobs:
|
|||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
- name: Generate a changelog
|
- name: Generate a changelog
|
||||||
uses: orhun/git-cliff-action@v4
|
uses: orhun/git-cliff-action@v4
|
||||||
with:
|
with:
|
||||||
@ -27,23 +24,17 @@ jobs:
|
|||||||
args: --latest --strip header
|
args: --latest --strip header
|
||||||
env:
|
env:
|
||||||
OUTPUT: BODY.md
|
OUTPUT: BODY.md
|
||||||
|
|
||||||
- name: Publish on GitHub
|
- name: Publish on GitHub
|
||||||
uses: ncipollo/release-action@v1
|
uses: ncipollo/release-action@v1
|
||||||
with:
|
with:
|
||||||
prerelease: false
|
prerelease: false
|
||||||
bodyFile: BODY.md
|
bodyFile: BODY.md
|
||||||
|
|
||||||
|
|
||||||
publish-release:
|
publish-release:
|
||||||
|
|
||||||
name: Publishing for ${{ matrix.os }}
|
name: Publishing for ${{ matrix.os }}
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
# macos x86_64
|
|
||||||
- os: macos-latest
|
- os: macos-latest
|
||||||
os-name: macos
|
os-name: macos
|
||||||
target: x86_64-apple-darwin
|
target: x86_64-apple-darwin
|
||||||
@ -51,7 +42,6 @@ jobs:
|
|||||||
binary-postfix: ""
|
binary-postfix: ""
|
||||||
binary-name: tv
|
binary-name: tv
|
||||||
use-cross: false
|
use-cross: false
|
||||||
# macos arm64
|
|
||||||
- os: macos-latest
|
- os: macos-latest
|
||||||
os-name: macos
|
os-name: macos
|
||||||
target: aarch64-apple-darwin
|
target: aarch64-apple-darwin
|
||||||
@ -59,31 +49,6 @@ jobs:
|
|||||||
binary-postfix: ""
|
binary-postfix: ""
|
||||||
use-cross: false
|
use-cross: false
|
||||||
binary-name: tv
|
binary-name: tv
|
||||||
# windows x86_64
|
|
||||||
- os: windows-latest
|
|
||||||
os-name: windows
|
|
||||||
target: x86_64-pc-windows-msvc
|
|
||||||
architecture: x86_64
|
|
||||||
binary-postfix: ".exe"
|
|
||||||
use-cross: false
|
|
||||||
binary-name: tv
|
|
||||||
# linux aaarch64
|
|
||||||
- os: ubuntu-latest
|
|
||||||
os-name: linux
|
|
||||||
target: aarch64-unknown-linux-gnu
|
|
||||||
architecture: arm64
|
|
||||||
binary-postfix: ""
|
|
||||||
use-cross: true
|
|
||||||
binary-name: tv
|
|
||||||
# linux i686
|
|
||||||
- os: ubuntu-latest
|
|
||||||
os-name: linux
|
|
||||||
target: i686-unknown-linux-gnu
|
|
||||||
architecture: i686
|
|
||||||
binary-postfix: ""
|
|
||||||
use-cross: true
|
|
||||||
binary-name: tv
|
|
||||||
# linux x86_64
|
|
||||||
- os: ubuntu-latest
|
- os: ubuntu-latest
|
||||||
os-name: linux
|
os-name: linux
|
||||||
target: x86_64-unknown-linux-gnu
|
target: x86_64-unknown-linux-gnu
|
||||||
@ -91,7 +56,27 @@ jobs:
|
|||||||
binary-postfix: ""
|
binary-postfix: ""
|
||||||
use-cross: false
|
use-cross: false
|
||||||
binary-name: tv
|
binary-name: tv
|
||||||
|
- os: windows-latest
|
||||||
|
os-name: windows
|
||||||
|
target: x86_64-pc-windows-msvc
|
||||||
|
architecture: x86_64
|
||||||
|
binary-postfix: ".exe"
|
||||||
|
use-cross: false
|
||||||
|
binary-name: tv
|
||||||
|
- os: ubuntu-latest
|
||||||
|
os-name: linux
|
||||||
|
target: aarch64-unknown-linux-gnu
|
||||||
|
architecture: arm64
|
||||||
|
binary-postfix: ""
|
||||||
|
use-cross: true
|
||||||
|
binary-name: tv
|
||||||
|
- os: ubuntu-latest
|
||||||
|
os-name: linux
|
||||||
|
target: i686-unknown-linux-gnu
|
||||||
|
architecture: i686
|
||||||
|
binary-postfix: ""
|
||||||
|
use-cross: true
|
||||||
|
binary-name: tv
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
@ -102,7 +87,6 @@ jobs:
|
|||||||
target: ${{ matrix.target }}
|
target: ${{ matrix.target }}
|
||||||
profile: minimal
|
profile: minimal
|
||||||
override: true
|
override: true
|
||||||
|
|
||||||
- uses: Swatinem/rust-cache@v2
|
- uses: Swatinem/rust-cache@v2
|
||||||
- name: Cargo build
|
- name: Cargo build
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
@ -111,24 +95,26 @@ jobs:
|
|||||||
use-cross: ${{ matrix.use-cross }}
|
use-cross: ${{ matrix.use-cross }}
|
||||||
toolchain: stable
|
toolchain: stable
|
||||||
args: --release --target ${{ matrix.target }}
|
args: --release --target ${{ matrix.target }}
|
||||||
|
|
||||||
- name: install strip command
|
- name: install strip command
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |2
|
||||||
if [[ ${{ matrix.target }} == aarch64-unknown-linux-gnu ]]; then
|
if [[ ${{ matrix.target }} == aarch64-unknown-linux-gnu ]]; then
|
||||||
|
|
||||||
sudo apt update
|
sudo apt update
|
||||||
sudo apt-get install -y binutils-aarch64-linux-gnu
|
sudo apt-get install -y binutils-aarch64-linux-gnu
|
||||||
fi
|
fi
|
||||||
- name: Packaging final binary
|
- name: Packaging final binary
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |2
|
||||||
cd target/${{ matrix.target }}/release
|
cd target/${{ matrix.target }}/release
|
||||||
|
|
||||||
|
|
||||||
####### reduce binary size by removing debug symbols #######
|
####### reduce binary size by removing debug symbols #######
|
||||||
|
|
||||||
BINARY_NAME=${{ matrix.binary-name }}${{ matrix.binary-postfix }}
|
BINARY_NAME=${{ matrix.binary-name }}${{ matrix.binary-postfix }}
|
||||||
echo "BINARY_NAME=$BINARY_NAME" >> "$GITHUB_ENV"
|
echo "BINARY_NAME=$BINARY_NAME" >> "$GITHUB_ENV"
|
||||||
if [[ ${{ matrix.target }} == aarch64-unknown-linux-gnu ]]; then
|
if [[ ${{ matrix.target }} == aarch64-unknown-linux-gnu ]]; then
|
||||||
|
|
||||||
GCC_PREFIX="aarch64-linux-gnu-"
|
GCC_PREFIX="aarch64-linux-gnu-"
|
||||||
else
|
else
|
||||||
GCC_PREFIX=""
|
GCC_PREFIX=""
|
||||||
@ -145,6 +131,7 @@ jobs:
|
|||||||
########## create sha256 ##########
|
########## create sha256 ##########
|
||||||
|
|
||||||
if [[ ${{ runner.os }} == 'Windows' ]]; then
|
if [[ ${{ runner.os }} == 'Windows' ]]; then
|
||||||
|
|
||||||
certutil -hashfile $RELEASE_NAME.tar.gz sha256 | grep -E [A-Fa-f0-9]{64} > $RELEASE_NAME.sha256
|
certutil -hashfile $RELEASE_NAME.tar.gz sha256 | grep -E [A-Fa-f0-9]{64} > $RELEASE_NAME.sha256
|
||||||
else
|
else
|
||||||
shasum -a 256 $RELEASE_NAME.tar.gz > $RELEASE_NAME.sha256
|
shasum -a 256 $RELEASE_NAME.tar.gz > $RELEASE_NAME.sha256
|
||||||
@ -155,71 +142,22 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
Compress-Archive -Path "$env:BINARY_NAME" -Destination "$($env:RELEASE_NAME).zip"
|
Compress-Archive -Path "$env:BINARY_NAME" -Destination "$($env:RELEASE_NAME).zip"
|
||||||
(Get-FileHash "$($env:RELEASE_NAME).zip" -Algorithm SHA256).Hash.ToLower() > "$($env:RELEASE_NAME).zip.sha256"
|
(Get-FileHash "$($env:RELEASE_NAME).zip" -Algorithm SHA256).Hash.ToLower() > "$($env:RELEASE_NAME).zip.sha256"
|
||||||
|
|
||||||
- name: Releasing assets
|
- name: Releasing assets
|
||||||
uses: softprops/action-gh-release@v2
|
uses: softprops/action-gh-release@v2
|
||||||
with:
|
with:
|
||||||
files: |
|
files: |
|
||||||
|
|
||||||
target/${{ matrix.target }}/release/${{ matrix.binary-name }}-*.tar.gz
|
target/${{ matrix.target }}/release/${{ matrix.binary-name }}-*.tar.gz
|
||||||
target/${{ matrix.target }}/release/${{ matrix.binary-name }}-*.zip
|
target/${{ matrix.target }}/release/${{ matrix.binary-name }}-*.zip
|
||||||
target/${{ matrix.target }}/release/${{ matrix.binary-name }}-*.sha256
|
target/${{ matrix.target }}/release/${{ matrix.binary-name }}-*.sha256
|
||||||
|
|
||||||
env:
|
|
||||||
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
# (for older glibc compatibility: https://github.com/alexpasmantier/television/issues/339)
|
|
||||||
publish-release-legacy-linux:
|
|
||||||
name: Publishing for Legacy Linux
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
container: centos:7
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: |
|
|
||||||
yum -y update
|
|
||||||
yum -y groupinstall "Development Tools"
|
|
||||||
yum -y install gcc-c++ glibc-devel glibc-static
|
|
||||||
|
|
||||||
- name: Install Rust toolchain
|
|
||||||
run: |
|
|
||||||
curl https://sh.rustup.rs -sSf | sh -s -- -y
|
|
||||||
source $HOME/.cargo/env
|
|
||||||
rustup target add x86_64-unknown-linux-gnu
|
|
||||||
|
|
||||||
- name: Cargo build
|
|
||||||
run: |
|
|
||||||
cargo build --release --target x86_64-unknown-linux-gnu
|
|
||||||
|
|
||||||
- name: Packaging final binary
|
|
||||||
run: |
|
|
||||||
cd target/x86_64-unknown-linux-gnu/release
|
|
||||||
tar czvf tv-legacy-linux.tar.gz tv
|
|
||||||
|
|
||||||
- name: Releasing assets
|
|
||||||
uses: softprops/action-gh-release@v2
|
|
||||||
with:
|
|
||||||
files: |
|
|
||||||
target/x86_64-unknown-linux-gnu/release/tv-legacy-linux.tar.gz
|
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
|
||||||
publish-release-deb:
|
publish-release-deb:
|
||||||
name: publish-release-deb for ${{ matrix.target }}
|
name: publish-release-deb for ${{ matrix.target }}
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- target: x86_64-unknown-linux-musl
|
- target: x86_64-unknown-linux-musl
|
||||||
- target: armv7-unknown-linux-musleabihf
|
|
||||||
|
|
||||||
|
|
||||||
env:
|
env:
|
||||||
TARGET: ${{ matrix.target }}
|
TARGET: ${{ matrix.target }}
|
||||||
# Emit backtraces on panics.
|
# Emit backtraces on panics.
|
||||||
@ -227,46 +165,32 @@ jobs:
|
|||||||
# Since we're distributing the dpkg, we don't know whether the user will
|
# Since we're distributing the dpkg, we don't know whether the user will
|
||||||
# have PCRE2 installed, so just do a static build.
|
# have PCRE2 installed, so just do a static build.
|
||||||
PCRE2_SYS_STATIC: 1
|
PCRE2_SYS_STATIC: 1
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Install packages (Ubuntu)
|
- name: Install packages (Ubuntu)
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: "if ! command -V sudo; then\n apt-get update\n apt-get install -y --no-install-recommends sudo\nfi\nsudo apt-get update\nsudo apt-get install -y --no-install-recommends \\\n zsh xz-utils liblz4-tool musl-tools brotli zstd \n"
|
||||||
if ! command -V sudo; then
|
|
||||||
apt-get update
|
|
||||||
apt-get install -y --no-install-recommends sudo
|
|
||||||
fi
|
|
||||||
sudo apt-get update
|
|
||||||
sudo apt-get install -y --no-install-recommends \
|
|
||||||
zsh xz-utils liblz4-tool musl-tools brotli zstd
|
|
||||||
|
|
||||||
- name: Install Rust
|
- name: Install Rust
|
||||||
uses: dtolnay/rust-toolchain@master
|
uses: dtolnay/rust-toolchain@master
|
||||||
with:
|
with:
|
||||||
toolchain: nightly
|
toolchain: nightly
|
||||||
target: ${{ env.TARGET }}
|
target: ${{ env.TARGET }}
|
||||||
|
|
||||||
# for some reason, the above action doesn't seem to set the target correctly
|
# for some reason, the above action doesn't seem to set the target correctly
|
||||||
- name: Add rustup target
|
- name: Add rustup target
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
rustup target add ${{ env.TARGET }}
|
rustup target add ${{ env.TARGET }}
|
||||||
|
|
||||||
- name: Install cargo-deb
|
- name: Install cargo-deb
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
cargo install cargo-deb
|
cargo install cargo-deb
|
||||||
|
|
||||||
- name: Create deployment directory
|
- name: Create deployment directory
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
dir=deployment/deb
|
dir=deployment/deb
|
||||||
mkdir -p "$dir"
|
mkdir -p "$dir"
|
||||||
echo "DEPLOY_DIR=$dir" >> $GITHUB_ENV
|
echo "DEPLOY_DIR=$dir" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Build release binary
|
- name: Build release binary
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
@ -274,7 +198,6 @@ jobs:
|
|||||||
version="${{ github.ref_name }}"
|
version="${{ github.ref_name }}"
|
||||||
echo "DEB_DIR=target/${{ env.TARGET }}/debian" >> $GITHUB_ENV
|
echo "DEB_DIR=target/${{ env.TARGET }}/debian" >> $GITHUB_ENV
|
||||||
echo "DEB_NAME=television_$version-1_${{ env.TARGET }}.deb" >> $GITHUB_ENV
|
echo "DEB_NAME=television_$version-1_${{ env.TARGET }}.deb" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Create sha256 sum of deb file
|
- name: Create sha256 sum of deb file
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
@ -282,7 +205,6 @@ jobs:
|
|||||||
sum="$DEB_NAME.sha256"
|
sum="$DEB_NAME.sha256"
|
||||||
shasum -a 256 "$DEB_NAME" > "$sum"
|
shasum -a 256 "$DEB_NAME" > "$sum"
|
||||||
echo "SUM=$sum" >> $GITHUB_ENV
|
echo "SUM=$sum" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Upload release archive
|
- name: Upload release archive
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user