Skip to content

Commit

Permalink
ci: minor cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan-Velickovic committed Jan 13, 2024
1 parent 3d000f1 commit 59bfb8d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Build manual
runs-on: ubuntu-20.04
steps:
- name: Checkout VMM repository
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Nix
uses: cachix/install-nix-action@v22
Expand All @@ -29,7 +29,7 @@ jobs:
name: Build and run examples (Linux x86-64)
runs-on: ubuntu-20.04
steps:
- name: Checkout VMM repository
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: 'true'
Expand All @@ -38,7 +38,7 @@ jobs:
shell: bash
- name: Extract Microkit SDK
run: unzip microkit-sdk.zip && tar -xf microkit-sdk-1.2.6.tar.gz
- name: Install VMM dependencies (via apt)
- name: Install dependencies (via apt)
# 'expect' is only a dependency for CI testing
run: sudo apt update && sudo apt install -y make clang lld llvm qemu-system-arm device-tree-compiler expect
- name: Install Zig
Expand All @@ -60,7 +60,7 @@ jobs:
name: Build and run examples (macOS x86-64)
runs-on: macos-12
steps:
- name: Checkout VMM repository
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: 'true'
Expand All @@ -69,7 +69,7 @@ jobs:
shell: bash
- name: Extract Microkit SDK
run: unzip microkit-sdk.zip && tar -xf microkit-sdk-1.2.6.tar.gz
- name: Install VMM dependencies (via Homebrew)
- name: Install dependencies (via Homebrew)
# 'expect' is only a dependency for CI testing
run: |
brew install llvm qemu dtc make expect
Expand All @@ -92,7 +92,7 @@ jobs:
name: Build and run examples (Linux x86-64 via Nix)
runs-on: ubuntu-20.04
steps:
- name: Checkout VMM repository
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: 'true'
Expand All @@ -115,7 +115,7 @@ jobs:
name: Build and run examples (macOS x86-64 via Nix)
runs-on: macos-12
steps:
- name: Checkout VMM repository
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: 'true'
Expand Down

0 comments on commit 59bfb8d

Please sign in to comment.