Merge remote-tracking branch 'refs/remotes/github/riscv-jit-rv64' int… #25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- riscv-jit-rv64 | |
jobs: | |
cross-build: | |
runs-on: ubuntu-latest | |
container: | |
image: mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-22.04-cross-riscv64 | |
env: | |
ROOTFS_DIR: /crossrootfs/riscv64 | |
QEMU_LD_PREFIX: /crossrootfs/riscv64 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
# cache | |
- name: Cache | |
uses: actions/cache@v2 | |
with: | |
path: | | |
.dotnet/ | |
artifacts/ | |
key: ${{ runner.os }}-dotnet-cross-build | |
- name: Cross Build Mono | |
# ./build.sh mono+libs+host+clr.hosts -c Debug --cross --arch riscv64 --ninja /p:KeepNativeSymbols=true --build | |
run: ./build.sh mono -c Debug --cross --arch riscv64 --ci | |
- name: Cross Build Libs & host | |
run: ./build.sh mono+libs+host+clr.hosts -c Release --cross --arch riscv64 --ci | |
- name: Build Tests programs | |
run: ./build.sh -mono -release riscv64 -tree:JIT/ --ci | |
working-directory: ./src/tests | |
- name: compress files | |
run: tar -zcvf runtime.tar.gz ./* | |
# upload entire project | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: jit-riscv64 | |
path: ./runtime.tar.gz | |
test: | |
continue-on-error: true | |
runs-on: ubuntu-latest | |
container: | |
image: mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-22.04-cross-riscv64 | |
env: | |
ROOTFS_DIR: /crossrootfs/riscv64 | |
QEMU_LD_PREFIX: /crossrootfs/riscv64 | |
needs: cross-build | |
steps: | |
- name: Download Artifacts | |
uses: actions/download-artifact@v2 | |
with: | |
name: jit-riscv64 | |
- name: Decompress | |
run: tar -zxvf runtime.tar.gz ./* | |
- name: Cache | |
uses: actions/cache@v2 | |
with: | |
path: | | |
artifacts/tests/coreclr | |
key: ${{ runner.os }}-dotnet-test | |
- name: Run tests | |
run: bash -c ./run.sh Release | |
working-directory: ./src/tests | |