Skip to content

Commit

Permalink
update yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Xinlong-Wu committed Dec 19, 2023
1 parent d949282 commit 33deb97
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/jit-riscv64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@ jobs:
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 -zcf runtime.tar.gz ./*
Expand All @@ -58,6 +55,15 @@ jobs:
name: runtime.tar.gz
- name: Decompress
run: tar -zxf runtime.tar.gz -C ./
- name: Cache
uses: actions/cache@v2
with:
path: |
artifacts/tests/
key: ${{ runner.os }}-dotnet-cross-build
- name: Build Tests programs
run: ./build.sh -mono -release riscv64 -tree:JIT/ --ci
working-directory: ./src/tests
- name: Run tests
run: bash -c ./run.sh Release
working-directory: ./src/tests
Expand Down

0 comments on commit 33deb97

Please sign in to comment.