Skip to content

WIP: try running GH actions workflow under QEMU #13

WIP: try running GH actions workflow under QEMU

WIP: try running GH actions workflow under QEMU #13

Workflow file for this run

name: QEMU test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
hydrate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: arm64
- name: NPM Install
run: npm ci
# - name: Build
# run: npm run build
- name: Install Python dependencies
run: docker run --rm --platform linux/arm64 -v $(pwd):/src python:3.11 sh -c 'apt-get update && apt-get -y install --no-install-recommends npm && cd src && npx arc hydrate'