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

Commit a4b489e

Browse files
authored
Merge pull request #40 from AkihiroSuda/dev
CI: trivial fixes
2 parents 9396edf + 49fae03 commit a4b489e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ${{ matrix.platform }}
1717
timeout-minutes: 40
1818
steps:
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v3
2020
with:
2121
fetch-depth: 1
2222
- name: Show host info
@@ -30,15 +30,15 @@ jobs:
3030
run: |
3131
# compile for x86_64
3232
sudo make PREFIX=/opt/vde install
33-
file /opt/vde/bin/* | grep -c x86_64
33+
if file /opt/vde/bin/* | grep -q arm64 ; then false ; fi
3434
- name: Cleanup
3535
run: |
3636
sudo make clean
3737
- name: Make Install (arm64)
3838
run: |
3939
# cross-compile for arm64
4040
sudo make PREFIX=/opt/vde.arm64 ARCH=arm64 install
41-
file /opt/vde.arm64/bin/* | grep -c arm64
41+
if file /opt/vde.arm64/bin/* | grep -q x86_64 ; then false ; fi
4242
- name: Print launchd status (shared mode)
4343
run: launchctl print system/io.github.lima-vm.vde_vmnet.plist
4444
- name: Install test dependencies

0 commit comments

Comments
 (0)