Skip to content

Commit

Permalink
ARM64 CI
Browse files Browse the repository at this point in the history
  • Loading branch information
lostmsu committed Jan 9, 2022
1 parent 8293122 commit 853d40b
Showing 1 changed file with 42 additions and 0 deletions.
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

0 comments on commit 853d40b

Please sign in to comment.