From 48379a2566eabd7faf4e2a11330ba2fa18c990e3 Mon Sep 17 00:00:00 2001 From: Christian Brabandt Date: Mon, 10 Jul 2023 21:52:06 +0200 Subject: [PATCH] update --- .github/workflows/qemu.yml | 8 +++----- .github/workflows/simple_qemu.yml | 29 ----------------------------- 2 files changed, 3 insertions(+), 34 deletions(-) delete mode 100644 .github/workflows/simple_qemu.yml diff --git a/.github/workflows/qemu.yml b/.github/workflows/qemu.yml index 92623d89736017..c6680648e7ee69 100644 --- a/.github/workflows/qemu.yml +++ b/.github/workflows/qemu.yml @@ -12,8 +12,6 @@ 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 @@ -21,22 +19,22 @@ jobs: 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 diff --git a/.github/workflows/simple_qemu.yml b/.github/workflows/simple_qemu.yml deleted file mode 100644 index d24f02d0b8e67b..00000000000000 --- a/.github/workflows/simple_qemu.yml +++ /dev/null @@ -1,29 +0,0 @@ -on: [push, pull_request] - -jobs: - armv7_job: - # The host should always be Linux - runs-on: ubuntu-18.04 - name: Build on ubuntu-18.04 armv7 - steps: - - uses: actions/checkout@v3 - - uses: uraimo/run-on-arch-action@v2 - name: Run commands - id: runcmd - with: - arch: armv7 - distro: ubuntu18.04 - - # Not required, but speeds up builds by storing container images in - # a GitHub package registry. - githubToken: ${{ github.token }} - - # Set an output parameter `uname` for use in subsequent steps - run: | - uname -a - echo ::set-output name=uname::$(uname -a) - - - name: Get the output - # Echo the `uname` output parameter from the `runcmd` step - run: | - echo "The uname output was ${{ steps.runcmd.outputs.uname }}"