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

115 lines
3.5 KiB
YAML
Raw Normal View History

2022-08-08 15:59:07 +00:00
name: Build Latest
on:
workflow_dispatch:
env:
2022-09-16 06:54:04 +00:00
DOTNET_SDK_VERSION: '7.0.*'
2022-08-08 15:59:07 +00:00
jobs:
build-win-x64-arm64:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Set up dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ env.DOTNET_SDK_VERSION }}
include-prerelease: true
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]
uses: actions/upload-artifact@v1.0.0
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]
uses: actions/upload-artifact@v1.0.0
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
2022-08-08 15:59:07 +00:00
- uses: actions/checkout@v2
- name: Set up dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ env.DOTNET_SDK_VERSION }}
include-prerelease: true
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
- run: strip artifact/N_m3u8DL-RE
2022-08-08 15:59:07 +00:00
- name: Upload Artifact[linux-x64]
uses: actions/upload-artifact@v1.0.0
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
steps:
- uses: actions/checkout@v2
- name: Set up dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ env.DOTNET_SDK_VERSION }}
include-prerelease: true
2022-08-23 03:45:54 +00:00
- run: dotnet publish src/N_m3u8DL-RE -r linux-arm64 -c Release -p:CppCompilerAndLinker=clang-9 -p:SysRoot=/crossrootfs/arm64 -o artifact
- run: aarch64-linux-gnu-strip artifact/N_m3u8DL-RE
2022-08-08 15:59:07 +00:00
- name: Upload Artifact[linux-arm64]
uses: actions/upload-artifact@v1.0.0
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:
2022-08-08 15:59:07 +00:00
runs-on: macOS-latest
steps:
- uses: actions/checkout@v2
- run: rm src/N_m3u8DL-RE/Directory.Build.props
- name: Set up dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ env.DOTNET_SDK_VERSION }}
include-prerelease: true
2022-08-23 03:45:54 +00:00
- run: dotnet publish src/N_m3u8DL-RE -r osx-arm64 -c Release -o artifact-arm64 -p:PublishTrimmed=true -p:PublishReadyToRun=true -p:PublishSingleFile=true --self-contained true
2022-09-16 06:54:04 +00:00
- run: dotnet publish src/N_m3u8DL-RE -r osx-x64 -c Release -o artifact-x64 -p:PublishTrimmed=true -p:PublishReadyToRun=true -p:PublishSingleFile=true --self-contained true
2022-08-08 15:59:07 +00:00
- name: Upload Artifact[osx-x64]
2022-09-16 06:54:04 +00:00
uses: actions/upload-artifact@v1.0.0
with:
name: N_m3u8DL-RE_Beta_osx-x64
path: artifact-x64/N_m3u8DL-RE
- name: Upload Artifact[osx-arm64]
2022-08-08 15:59:07 +00:00
uses: actions/upload-artifact@v1.0.0
with:
name: N_m3u8DL-RE_Beta_osx-arm64
2022-08-23 03:45:54 +00:00
path: artifact-arm64/N_m3u8DL-RE