Skip to content

illumos-x64 dotnet-runtime build #38

illumos-x64 dotnet-runtime build

illumos-x64 dotnet-runtime build #38

name: illumos-x64 dotnet-runtime build
on:
workflow_dispatch:
jobs:
coreclr_Debug:
runs-on: ubuntu-latest
steps:
- name: Remove unnecessary files
run: df -h; sudo rm -rf "$AGENT_TOOLSDIRECTORY"; df -h
- name: runtime+libs+packs build
run: |
git clone https://github.com/dotnet/runtime --single-branch --depth 1
docker run --rm -v$(pwd)/runtime:/runtime -e ROOTFS_DIR=/crossrootfs/x64 \
mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-22.04-cross-illumos-20240711153006-4d80ecb \
/runtime/build.sh clr+libs+packs -c Debug -os illumos -cross -gcc
coreclr_Release:
runs-on: ubuntu-latest
steps:
- name: Remove unnecessary files
run: df -h; sudo rm -rf "$AGENT_TOOLSDIRECTORY"; df -h
- name: runtime+libs+packs build
run: |
git clone https://github.com/dotnet/runtime --single-branch --depth 1
docker run --rm -v$(pwd)/runtime:/runtime -e ROOTFS_DIR=/crossrootfs/x64 \
mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-22.04-cross-illumos-20240711153006-4d80ecb \
/runtime/build.sh clr+libs+packs -c Release -os illumos -cross -gcc
mono_Debug:
runs-on: ubuntu-latest
steps:
- name: Remove unnecessary files
run: df -h; sudo rm -rf "$AGENT_TOOLSDIRECTORY"; df -h
- name: runtime+libs+packs build
run: |
git clone https://github.com/am11/runtime --single-branch --depth 1
docker run --rm -v$(pwd)/runtime:/runtime -e ROOTFS_DIR=/crossrootfs/x64 \
mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-22.04-cross-illumos-20240711153006-4d80ecb \
/runtime/build.sh mono+libs+packs -c Debug -os illumos -cross -gcc
mono_Release:
runs-on: ubuntu-latest
steps:
- name: Remove unnecessary files
run: df -h; sudo rm -rf "$AGENT_TOOLSDIRECTORY"; df -h
- name: runtime+libs+packs build
run: |
git clone https://github.com/am11/runtime --single-branch --depth 1
docker run --rm -v$(pwd)/runtime:/runtime -e ROOTFS_DIR=/crossrootfs/x64 \
mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-22.04-cross-illumos-20240711153006-4d80ecb \
/runtime/build.sh mono+libs+packs -c Release -os illumos -cross -gcc