Skip to content

Commit

Permalink
add aarch64 build process
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonk000 committed Dec 1, 2023
1 parent 9983fa6 commit e3d46a0
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/rust.yml → .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Rust
name: Build linux

on:
push:
Expand All @@ -15,6 +15,8 @@ jobs:
runs-on: ubuntu-22.04

steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- uses: actions/checkout@v3

- name: Install libelf and gdb
Expand All @@ -27,5 +29,9 @@ jobs:

- name: Run tests
run: cargo test
- name: Run integration tests
- name: Run integration tests x86_64
run: sudo -E /home/${USER}/.cargo/bin/cargo test --no-fail-fast -- --include-ignored

- name: Run integration tests aarch64
run: docker run --platform=linux/arm64/v8 arm64v8/ubuntu:22.04 cargo test --no-fail-fast -- --include-ignored

0 comments on commit e3d46a0

Please sign in to comment.