Skip to content

Commit

Permalink
add qemu.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbra committed Jul 8, 2023
1 parent b660d19 commit afd801a
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/qemu.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: QEMU

on: [push, pull_request]

jobs:
qemu_job:
runs-on: ubuntu-22.04
name: Build Vim on ubuntu-22.04 s390
steps:
- uses: actions/checkout@v3
with:
path: repo
- uses: uraimo/run-on-arch-action@v2
name: Prep Environment
id: runcmd
with:
arch: s390x
distro: ubuntu22.04
shell: /bin/sh

githubToken: ${{ github.token }}
install: |
apt-get update -q -y &&
apt-get install -q -y build-essential
run: |
echo "NPROC=$(getconf _NPROCESSORS_ONLN)" >> $GITHUB_ENV
echo $(lscpu)
cd repo/src
./configure
make -j${NPROC}

0 comments on commit afd801a

Please sign in to comment.