Update build_latest.yml

This commit is contained in:
nilaoda 2022-08-23 11:45:54 +08:00 committed by GitHub
parent 561e2a6aa8
commit e0aa2fd323
1 changed files with 15 additions and 25 deletions

View File

@ -22,22 +22,20 @@ jobs:
dotnet-version: ${{ env.DOTNET_SDK_VERSION }} dotnet-version: ${{ env.DOTNET_SDK_VERSION }}
include-prerelease: true include-prerelease: true
- run: | - run: dotnet publish src/N_m3u8DL-RE -r win-x64 -c Release -o artifact-x64
cd src - run: dotnet publish src/N_m3u8DL-RE -r win-arm64 -c Release -o artifact-arm64
dotnet publish N_m3u8DL-RE -r win-x64 -c Release -o artifact-x64
dotnet publish N_m3u8DL-RE -r win-arm64 -c Release -o artifact-arm64
- name: Upload Artifact[win-x64] - name: Upload Artifact[win-x64]
uses: actions/upload-artifact@v1.0.0 uses: actions/upload-artifact@v1.0.0
with: with:
name: N_m3u8DL-RE_Beta_win-x64 name: N_m3u8DL-RE_Beta_win-x64
path: src/artifact-x64\N_m3u8DL-RE.exe path: artifact-x64\N_m3u8DL-RE.exe
- name: Upload Artifact[win-arm64] - name: Upload Artifact[win-arm64]
uses: actions/upload-artifact@v1.0.0 uses: actions/upload-artifact@v1.0.0
with: with:
name: N_m3u8DL-RE_Beta_win-arm64 name: N_m3u8DL-RE_Beta_win-arm64
path: src/artifact-arm64\N_m3u8DL-RE.exe path: artifact-arm64\N_m3u8DL-RE.exe
build-linux-x64: build-linux-x64:
@ -56,16 +54,14 @@ jobs:
dotnet-version: ${{ env.DOTNET_SDK_VERSION }} dotnet-version: ${{ env.DOTNET_SDK_VERSION }}
include-prerelease: true include-prerelease: true
- run: apt-get install -y libicu-dev libcurl4-openssl-dev zlib1g-dev libkrb5-dev - run: apt-get install -y libicu-dev libcurl4-openssl-dev zlib1g-dev libkrb5-dev
- run: | - run: dotnet publish src/N_m3u8DL-RE -r linux-x64 -c Release -o artifact
cd src - run: strip artifact/N_m3u8DL-RE
dotnet publish N_m3u8DL-RE -r linux-x64 -c Release -o artifact
strip artifact/N_m3u8DL-RE
- name: Upload Artifact[linux-x64] - name: Upload Artifact[linux-x64]
uses: actions/upload-artifact@v1.0.0 uses: actions/upload-artifact@v1.0.0
with: with:
name: N_m3u8DL-RE_Beta_linux-x64 name: N_m3u8DL-RE_Beta_linux-x64
path: src/artifact/N_m3u8DL-RE path: artifact/N_m3u8DL-RE
build-linux-arm64: build-linux-arm64:
@ -80,16 +76,14 @@ jobs:
with: with:
dotnet-version: ${{ env.DOTNET_SDK_VERSION }} dotnet-version: ${{ env.DOTNET_SDK_VERSION }}
include-prerelease: true include-prerelease: true
- run: | - run: dotnet publish src/N_m3u8DL-RE -r linux-arm64 -c Release -p:CppCompilerAndLinker=clang-9 -p:SysRoot=/crossrootfs/arm64 -o artifact
cd src - run: aarch64-linux-gnu-strip artifact/N_m3u8DL-RE
dotnet publish N_m3u8DL-RE -r linux-arm64 -c Release -p:CppCompilerAndLinker=clang-9 -p:SysRoot=/crossrootfs/arm64 -o artifact
aarch64-linux-gnu-strip artifact/N_m3u8DL-RE
- name: Upload Artifact[linux-arm64] - name: Upload Artifact[linux-arm64]
uses: actions/upload-artifact@v1.0.0 uses: actions/upload-artifact@v1.0.0
with: with:
name: N_m3u8DL-RE_Beta_linux-arm64 name: N_m3u8DL-RE_Beta_linux-arm64
path: src/artifact/N_m3u8DL-RE path: artifact/N_m3u8DL-RE
build-mac-x64: build-mac-x64:
@ -103,16 +97,14 @@ jobs:
with: with:
dotnet-version: ${{ env.DOTNET_SDK_VERSION }} dotnet-version: ${{ env.DOTNET_SDK_VERSION }}
include-prerelease: true include-prerelease: true
- run: | - run: dotnet publish src/N_m3u8DL-RE -r osx-x64 -c Release -o artifact
cd src - run: strip artifact/N_m3u8DL-RE
dotnet publish N_m3u8DL-RE -r osx-x64 -c Release -o artifact
strip artifact/N_m3u8DL-RE
- name: Upload Artifact[osx-x64] - name: Upload Artifact[osx-x64]
uses: actions/upload-artifact@v1.0.0 uses: actions/upload-artifact@v1.0.0
with: with:
name: N_m3u8DL-RE_Beta_osx-x64 name: N_m3u8DL-RE_Beta_osx-x64
path: src/artifact/N_m3u8DL-RE path: artifact/N_m3u8DL-RE
build-mac-arm64: build-mac-arm64:
@ -128,12 +120,10 @@ jobs:
with: with:
dotnet-version: ${{ env.DOTNET_SDK_VERSION }} dotnet-version: ${{ env.DOTNET_SDK_VERSION }}
include-prerelease: true include-prerelease: true
- run: | - 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
cd src
dotnet publish N_m3u8DL-RE -r osx-arm64 -c Release -o artifact-arm64 -p:PublishTrimmed=true -p:PublishReadyToRun=true -p:PublishSingleFile=true --self-contained true
- name: Upload Artifact[osx-x64] - name: Upload Artifact[osx-x64]
uses: actions/upload-artifact@v1.0.0 uses: actions/upload-artifact@v1.0.0
with: with:
name: N_m3u8DL-RE_Beta_osx-arm64 name: N_m3u8DL-RE_Beta_osx-arm64
path: src/artifact-arm64/N_m3u8DL-RE path: artifact-arm64/N_m3u8DL-RE