Skip to content

Commit

Permalink
n
Browse files Browse the repository at this point in the history
  • Loading branch information
edenhaus committed Jan 8, 2025
1 parent 44c5d5e commit 9712111
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,34 @@ jobs:
- name: Verify no getLogger usages
run: scripts/check_getLogger.sh

armv7_job:
# The host should always be Linux
runs-on: ubuntu-22.04
name: Build on ubuntu-22.04 armv7
steps:
- uses: actions/checkout@v4
- uses: uraimo/run-on-arch-action@v2
name: Run commands
id: runcmd
with:
arch: armv7
distro: alpine_latest

# 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
ls -al
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 }}"
test:
runs-on: "ubuntu-latest"
steps:
Expand Down

0 comments on commit 9712111

Please sign in to comment.