N_m3u8DL-RE/.github/workflows/build_latest.yml

184 lines
5.6 KiB
YAML
Raw Normal View History

2022-08-08 15:59:07 +00:00
name: Build Latest
on:
2022-08-08 15:59:07 +00:00
workflow_dispatch:
inputs:
2023-04-05 15:54:02 +00:00
doRelease:
description: 'Publish new release'
type: boolean
default: false
required: false
tag:
type: string
description: 'Release version tag (e.g. v1.2.3)'
required: true
ref:
type: string
description: 'Git ref from which to release'
required: true
default: 'main'
2022-08-08 15:59:07 +00:00
env:
2023-06-14 17:09:22 +00:00
DOTNET_SDK_VERSION: "8.0.*"
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
2022-08-08 15:59:07 +00:00
jobs:
build-win-x64-arm64:
runs-on: windows-latest
2022-08-08 15:59:07 +00:00
steps:
2023-11-13 14:15:36 +00:00
- uses: actions/checkout@v1
2022-08-08 15:59:07 +00:00
- name: Set up dotnet
2023-11-09 23:41:37 +00:00
uses: actions/setup-dotnet@v3
2022-08-08 15:59:07 +00:00
with:
dotnet-version: ${{ env.DOTNET_SDK_VERSION }}
2022-08-23 03:45:54 +00:00
- run: dotnet publish src/N_m3u8DL-RE -r win-x64 -c Release -o artifact-x64
- run: dotnet publish src/N_m3u8DL-RE -r win-arm64 -c Release -o artifact-arm64
2022-08-08 15:59:07 +00:00
- name: Upload Artifact[win-x64]
2023-11-09 23:41:37 +00:00
uses: actions/upload-artifact@v3.1.3
2022-08-08 15:59:07 +00:00
with:
name: N_m3u8DL-RE_Beta_win-x64
2022-08-23 03:45:54 +00:00
path: artifact-x64\N_m3u8DL-RE.exe
2022-08-08 15:59:07 +00:00
- name: Upload Artifact[win-arm64]
2023-11-09 23:41:37 +00:00
uses: actions/upload-artifact@v3.1.3
2022-08-08 15:59:07 +00:00
with:
name: N_m3u8DL-RE_Beta_win-arm64
2022-08-23 03:45:54 +00:00
path: artifact-arm64\N_m3u8DL-RE.exe
2022-08-08 15:59:07 +00:00
build-linux-x64:
2022-08-22 16:01:10 +00:00
runs-on: ubuntu-latest
container: ubuntu:18.04
2022-08-08 15:59:07 +00:00
steps:
2022-08-22 16:01:10 +00:00
- run: apt-get update
- run: apt-get install -y curl wget
2023-11-13 14:15:36 +00:00
- uses: actions/checkout@v1
2022-08-08 15:59:07 +00:00
- name: Set up dotnet
2023-11-09 23:41:37 +00:00
uses: actions/setup-dotnet@v3
2022-08-08 15:59:07 +00:00
with:
dotnet-version: ${{ env.DOTNET_SDK_VERSION }}
2022-08-22 16:01:10 +00:00
- run: apt-get install -y libicu-dev libcurl4-openssl-dev zlib1g-dev libkrb5-dev
2022-08-23 03:45:54 +00:00
- run: dotnet publish src/N_m3u8DL-RE -r linux-x64 -c Release -o artifact
2022-08-08 15:59:07 +00:00
- name: Upload Artifact[linux-x64]
2023-11-09 23:41:37 +00:00
uses: actions/upload-artifact@v3.1.3
2022-08-08 15:59:07 +00:00
with:
name: N_m3u8DL-RE_Beta_linux-x64
2022-08-23 03:45:54 +00:00
path: artifact/N_m3u8DL-RE
2022-08-08 15:59:07 +00:00
build-linux-arm64:
2022-08-22 16:01:10 +00:00
runs-on: ubuntu-latest
2022-08-08 15:59:07 +00:00
container: mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-cross-arm64-20220312201346-b2c2436
2022-08-08 15:59:07 +00:00
steps:
2023-11-13 14:15:36 +00:00
- uses: actions/checkout@v1
2022-08-08 15:59:07 +00:00
- name: Set up dotnet
2023-11-09 23:41:37 +00:00
uses: actions/setup-dotnet@v3
2022-08-08 15:59:07 +00:00
with:
dotnet-version: ${{ env.DOTNET_SDK_VERSION }}
2023-06-14 17:09:22 +00:00
- run: dotnet publish src/N_m3u8DL-RE -r linux-arm64 -c Release -p:StripSymbols=true -p:CppCompilerAndLinker=clang-9 -p:SysRoot=/crossrootfs/arm64 -o artifact
2022-08-08 15:59:07 +00:00
- name: Upload Artifact[linux-arm64]
2023-11-09 23:41:37 +00:00
uses: actions/upload-artifact@v3.1.3
2022-08-08 15:59:07 +00:00
with:
name: N_m3u8DL-RE_Beta_linux-arm64
2022-08-23 03:45:54 +00:00
path: artifact/N_m3u8DL-RE
2022-08-08 15:59:07 +00:00
2022-09-16 06:54:04 +00:00
build-mac-x64-arm64:
runs-on: macos-latest
2022-08-08 15:59:07 +00:00
steps:
2023-11-13 14:15:36 +00:00
- uses: actions/checkout@v1
2022-08-08 15:59:07 +00:00
- name: Set up dotnet
2023-11-09 23:41:37 +00:00
uses: actions/setup-dotnet@v3
2022-08-08 15:59:07 +00:00
with:
dotnet-version: ${{ env.DOTNET_SDK_VERSION }}
2023-06-14 17:09:22 +00:00
- run: dotnet publish src/N_m3u8DL-RE -r osx-arm64 -c Release -o artifact-arm64
- run: dotnet publish src/N_m3u8DL-RE -r osx-x64 -c Release -o artifact-x64
2022-09-16 06:54:04 +00:00
2022-08-08 15:59:07 +00:00
- name: Upload Artifact[osx-x64]
2023-11-09 23:41:37 +00:00
uses: actions/upload-artifact@v3.1.3
2022-09-16 06:54:04 +00:00
with:
name: N_m3u8DL-RE_Beta_osx-x64
path: artifact-x64/N_m3u8DL-RE
- name: Upload Artifact[osx-arm64]
2023-11-09 23:41:37 +00:00
uses: actions/upload-artifact@v3.1.3
2022-08-08 15:59:07 +00:00
with:
name: N_m3u8DL-RE_Beta_osx-arm64
2022-08-23 03:45:54 +00:00
path: artifact-arm64/N_m3u8DL-RE
2023-04-05 15:54:02 +00:00
create_draft_release:
name: Create Github draft release
if: ${{ github.event.inputs.doRelease == 'true' }}
needs: [build-win-x64-arm64,build-linux-x64,build-linux-arm64,build-mac-x64-arm64]
runs-on: ubuntu-latest
steps:
- name: Audit gh version
run: gh --version
- name: Check for existing release
id: check_release
run: |
echo "::echo::on"
gh release view --repo '${{ github.repository }}' '${{ github.event.inputs.tag }}' \
&& echo "already_exists=true" >> $GITHUB_ENV \
|| echo "already_exists=false" >> $GITHUB_ENV
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout repo
if: env.already_exists == 'false'
uses: actions/checkout@v3
with:
ref: '${{ github.event.inputs.ref }}'
- name: Create release
if: env.already_exists == 'false'
run: >
gh release create
'${{ github.event.inputs.tag }}'
--draft
--repo '${{ github.repository }}'
--title '${{ github.event.inputs.tag }}'
--target '${{ github.event.inputs.ref }}'
--generate-notes
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
attach_to_release:
name: Attach native executables to release
2023-04-05 15:54:02 +00:00
if: ${{ github.event.inputs.doRelease == 'true' }}
needs: create_draft_release
runs-on: ubuntu-latest
steps:
2022-10-12 13:59:41 +00:00
- name: Get current date
id: date
2022-10-12 14:14:26 +00:00
run: echo "date=$(date +'%Y%m%d')" >> $GITHUB_ENV
2022-10-12 13:59:41 +00:00
- name: GH version
run: gh --version
- name: Fetch executables
uses: actions/download-artifact@v3
- name: Tar (linux, macOS)
2023-04-12 15:39:46 +00:00
run: for dir in *{osx,linux}*; do tar cvzfp "${dir}_${{ env.date }}.tar.gz" "$dir"; done
- name: Zip (windows)
2022-10-12 14:14:26 +00:00
run: for dir in *win*; do zip -r "${dir}_${{ env.date }}.zip" "$dir"; done
- name: Upload
run: |
until gh release upload --clobber --repo ${{ github.repository }} ${{ github.event.inputs.tag }} *.zip *.tar.gz; do
echo "Attempt $((++attempts)) to upload release artifacts failed. Will retry in 20s"
sleep 20
done
timeout-minutes: 10
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}