Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbra committed Jul 10, 2023
1 parent e6c475c commit 48379a2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 34 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/qemu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,31 +12,29 @@ jobs:
steps:
- uses: actions/checkout@v3
name: Checkout Source
# with:
# path: repo
- uses: uraimo/run-on-arch-action@v2
name: Build on Qemu
id: runcmd
with:
arch: ${{ matrix.arch }}
distro: ubuntu20.04
githubToken: ${{ github.token }}
dockerRunArgs: --volume "${GITHUB_WORKSPACE}/artifacts:/artifacts"
shell: /bin/bash

setup: |
mkdir -p ./artifacts
export NPROC=$(getconf _NPROCESSORS_ONLN)
echo "NPROC=$(getconf _NPROCESSORS_ONLN)" >> $GITHUB_ENV
run: |
echo $(lscpu)
apt-get update -q -y
apt-get install -q -y build-essential libncurses-dev
# Build Vim
echo "Building Vim"
pushd src
./configure
make -j${NPROC}
# Test
echo "Testing Vim"
./vim --version
# make test
popd
Expand Down
29 changes: 0 additions & 29 deletions .github/workflows/simple_qemu.yml

This file was deleted.

0 comments on commit 48379a2

Please sign in to comment.