Skip to content

Commit

Permalink
dropme: faster debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
grg-haas committed Jun 12, 2024
1 parent 9e4747a commit 88a70c9
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:

jobs:
build:
if: false
runs-on: ubuntu-latest

# Define the strategy for the build job. We generally want to cover each
Expand Down Expand Up @@ -374,10 +375,11 @@ jobs:
# Build tests, which are run for each supported platform
test-runtime-build:
if: false
needs: build
uses: ./.github/workflows/build-runtime.yml

# System tests, which are run for simulatable and self-hostable platforms
test-system:
needs: build
# needs: build
uses: ./.github/workflows/test-system.yml
16 changes: 10 additions & 6 deletions .github/workflows/test-system.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
environment: ${{ matrix.platform == 'generic' && ~ || track }}
strategy:
matrix:
platform: [generic, mpfs] #cva6]
platform: [mpfs] #, generic, cva6]
bits: [32, 64]
exclude:
# mpfs is not 32 bit
Expand All @@ -22,11 +22,15 @@ jobs:
with:
submodules: 'false'

- name: Restore build directory
uses: actions/download-artifact@v4
with:
name: keystone-${{ matrix.platform }}${{ matrix.bits }}-builddir
path: .
# - name: Restore build directory
# uses: actions/download-artifact@v4
# with:
# name: keystone-${{ matrix.platform }}${{ matrix.bits }}-builddir
# path: .

- name: Copy build directory
run: |
cp ~/keystone-${{ matrix.platform }}${{ matrix.bits }}-builddir .
- name: Decompress build directory
run: cat build.tar.xz | xz -d -T0 | tar -xf -
Expand Down

0 comments on commit 88a70c9

Please sign in to comment.