|
27 | 27 | run: | |
28 | 28 | git clone https://github.com/${{ github.event.inputs.runtimeForkName }}/${{ github.event.inputs.runtimeRepohName }} runtime --branch ${{ github.event.inputs.runtimeBranchName }} --single-branch --depth 1 |
29 | 29 | docker run --rm -v$(pwd)/runtime:/runtime -e ROOTFS_DIR=/crossrootfs/x64 \ |
30 | | - mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-22.04-cross-illumos \ |
| 30 | + mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-22.04-cross-illumos sh -c 'apt update && apt install -y ninja-build; |
31 | 31 | /runtime/build.sh clr+libs+packs -c Debug -os illumos -cross -gcc --bootstrap |
32 | 32 |
|
33 | 33 | coreclr_Release: |
|
40 | 40 | run: | |
41 | 41 | git clone https://github.com/${{ github.event.inputs.runtimeForkName }}/${{ github.event.inputs.runtimeRepohName }} runtime --branch ${{ github.event.inputs.runtimeBranchName }} --single-branch --depth 1 |
42 | 42 | docker run --rm -v$(pwd)/runtime:/runtime -e ROOTFS_DIR=/crossrootfs/x64 \ |
43 | | - mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-22.04-cross-illumos \ |
44 | | - /runtime/build.sh clr+libs+packs -c Release -os illumos -cross -gcc --bootstrap |
| 43 | + mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-22.04-cross-illumos sh -c 'apt update && apt install -y ninja-build; |
| 44 | + /runtime/build.sh clr+libs+packs -c Release -os illumos -cross -gcc --bootstrap' |
45 | 45 |
|
46 | 46 | mono_Debug: |
47 | 47 | runs-on: ubuntu-latest |
|
53 | 53 | run: | |
54 | 54 | git clone https://github.com/${{ github.event.inputs.runtimeForkName }}/${{ github.event.inputs.runtimeRepohName }} runtime --branch ${{ github.event.inputs.runtimeBranchName }} --single-branch --depth 1 |
55 | 55 | docker run --rm -v$(pwd)/runtime:/runtime -e ROOTFS_DIR=/crossrootfs/x64 \ |
56 | | - mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-22.04-cross-illumos \ |
57 | | - /runtime/build.sh mono+libs+packs -c Debug -os illumos -cross -gcc |
| 56 | + mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-22.04-cross-illumos sh -c 'apt update && apt install -y ninja-build; |
| 57 | + /runtime/build.sh mono+libs+packs -c Debug -os illumos -cross -gcc' |
58 | 58 |
|
59 | 59 | mono_Release: |
60 | 60 | runs-on: ubuntu-latest |
|
66 | 66 | run: | |
67 | 67 | git clone https://github.com/${{ github.event.inputs.runtimeForkName }}/${{ github.event.inputs.runtimeRepohName }} runtime --branch ${{ github.event.inputs.runtimeBranchName }} --single-branch --depth 1 |
68 | 68 | docker run --rm -v$(pwd)/runtime:/runtime -e ROOTFS_DIR=/crossrootfs/x64 \ |
69 | | - mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-22.04-cross-illumos \ |
70 | | - /runtime/build.sh mono+libs+packs -c Release -os illumos -cross -gcc |
| 69 | + mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-22.04-cross-illumos sh -c 'apt update && apt install -y ninja-build; |
| 70 | + /runtime/build.sh mono+libs+packs -c Release -os illumos -cross -gcc' |
0 commit comments