Skip to content
This repository has been archived by the owner on May 4, 2024. It is now read-only.

Commit

Permalink
Merge pull request #40 from AkihiroSuda/dev
Browse files Browse the repository at this point in the history
CI: trivial fixes
  • Loading branch information
AkihiroSuda authored Mar 24, 2022
2 parents 9396edf + 49fae03 commit a4b489e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ${{ matrix.platform }}
timeout-minutes: 40
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Show host info
Expand All @@ -30,15 +30,15 @@ jobs:
run: |
# compile for x86_64
sudo make PREFIX=/opt/vde install
file /opt/vde/bin/* | grep -c x86_64
if file /opt/vde/bin/* | grep -q arm64 ; then false ; fi
- name: Cleanup
run: |
sudo make clean
- name: Make Install (arm64)
run: |
# cross-compile for arm64
sudo make PREFIX=/opt/vde.arm64 ARCH=arm64 install
file /opt/vde.arm64/bin/* | grep -c arm64
if file /opt/vde.arm64/bin/* | grep -q x86_64 ; then false ; fi
- name: Print launchd status (shared mode)
run: launchctl print system/io.github.lima-vm.vde_vmnet.plist
- name: Install test dependencies
Expand Down

0 comments on commit a4b489e

Please sign in to comment.