Skip to content

ARM64 CI #22

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 12, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions .github/workflows/ci-arm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: ARM64 Tests

on: [push, pull_request]

jobs:
build:
runs-on: [self-hosted, linux, ARM64]

steps:
- uses: actions/checkout@v2

- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: |
3.1.x
6.0.x

- name: Create virtualenv
run: |
virtualenv -p python3 venv

- name: Install dependencies
run: |
source venv/bin/activate
python -m pip install --upgrade pip
pip install pytest cffi

# Assumes recent Mono

- name: Build
run: |
source venv/bin/activate
pip install -e .

- name: Test with pytest
run: |
source venv/bin/activate
pytest