Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
Jean-Philippe Durot committed Nov 19, 2024
1 parent 9aa0dfb commit 0af5c9d
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/actions/build-linux/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,20 @@ inputs:
runs:
using: "composite"
steps:
- name: Build for Linux (${{ inputs.build-configuration }})
shell: bash
run: ./build.sh -c ${{ inputs.build-configuration }} /p:VersionSuffix=${{ inputs.version-patch }} /p:StabilizePackageVersion=false /p:OfficialBuildId=20201010.1 /p:NativeOptimizationDataSupported=false /p:SkipArchivesBuild=false
- name : Download dotnet install scripts
shell: bash
run: wget https://dotnet.microsoft.com/download/dotnet/scripts/v1/dotnet-install.sh
- name: Retrieve official ASP.Net Core runtime
shell: bash
run: |
chmod u+x ./dotnet-install.sh
mkdir -p artifacts/packages/${{ inputs.build-configuration }}/Shipping/aspnetcore-runtime
./dotnet-install.sh --runtime aspnetcore --version ${{ inputs.version-runtime }} --os linux --install-dir artifacts/packages/${{ inputs.build-configuration }}/Shipping/aspnetcore-runtime
chmod u+x artifacts/packages/${{ inputs.build-configuration }}/Shipping/aspnetcore-runtime/dotnet
ls -l -R artifacts/packages/${{ inputs.build-configuration }}/Shipping/aspnetcore-runtime
- name: Build for Linux (${{ inputs.build-configuration }})
shell: bash
run: ./build.sh -c ${{ inputs.build-configuration }} /p:VersionSuffix=${{ inputs.version-patch }} /p:StabilizePackageVersion=false /p:OfficialBuildId=20201010.1 /p:NativeOptimizationDataSupported=false /p:SkipArchivesBuild=false
- name : Download dotnet install scripts
shell: bash
run: wget https://dotnet.microsoft.com/download/dotnet/scripts/v1/dotnet-install.sh
- name: Extract generated runtime artifact, add crossgen, symbols, and AspNetCore runtime
shell: bash
run: |
Expand Down

0 comments on commit 0af5c9d

Please sign in to comment.