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 bbfca0f commit 87f2e27
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions .github/workflows/qemu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,20 @@ jobs:

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

0 comments on commit 87f2e27

Please sign in to comment.