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