Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbra committed Jul 11, 2023
1 parent 87f2e27 commit d253bad
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions .github/workflows/qemu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
qemu_job:
timeout-minutes: 60
runs-on: ubuntu-20.04
name: Build Vim on Qemu
name: Vim on Qemu
strategy:
fail-fast: false
matrix:
Expand All @@ -24,21 +24,13 @@ jobs:
shell: /bin/bash

run: |
lscpu
apt-get update -q -y
apt-get install -q -y --no-install-recommends build-essential libncurses-dev # libsodium-dev
export NPROC=$(getconf _NPROCESSORS_ONLN)
pushd src
./configure --with-features=huge --enable-gui=no
make -j${NPROC}
make -j$(getconf _NPROCESSORS_ONLN)
./vim --version
cd testdir
# make test
make test
popd
# - name: Test Vim
# run: |
# echo "Testing Vim"
# pushd src
# ./vim --version
# true || make test
# popd

0 comments on commit d253bad

Please sign in to comment.