Skip to content

Commit

Permalink
Merge pull request #213 from hugovk/add-3.10-travis
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Aug 12, 2021
2 parents 4e66275 + 091746b commit f27fe2a
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 8 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/lint.yml
@@ -0,0 +1,12 @@
name: Lint

on: [push, pull_request]

jobs:
lint:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: pre-commit/action@v2.0.3
9 changes: 9 additions & 0 deletions .pre-commit-config.yaml
@@ -0,0 +1,9 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: 38b88246ccc552bffaaf54259d064beeee434539 # frozen: v4.0.1
hooks:
- id: check-merge-conflict
- id: check-yaml

ci:
autoupdate_schedule: quarterly
24 changes: 16 additions & 8 deletions .travis.yml
Expand Up @@ -15,36 +15,44 @@ services: docker

jobs:
include:
- name: "3.6 Xenial aarch64"
- name: "3.6 Focal aarch64"
arch: arm64
env:
- PLAT=aarch64
- MB_ML_VER=2014
- MB_PYTHON_VERSION=3.6
- DOCKER_TEST_IMAGE=multibuild/xenial_{PLAT}
- name: "3.7 Xenial aarch64"
- DOCKER_TEST_IMAGE=multibuild/focal_{PLAT}
- name: "3.7 Focal aarch64"
arch: arm64
env:
- PLAT=aarch64
- MB_ML_VER=2014
- MB_PYTHON_VERSION=3.7
- DOCKER_TEST_IMAGE=multibuild/xenial_{PLAT}
- name: "3.8 Xenial aarch64"
- DOCKER_TEST_IMAGE=multibuild/focal_{PLAT}
- name: "3.8 Focal aarch64"
os: linux
arch: arm64
env:
- PLAT=aarch64
- MB_ML_VER=2014
- MB_PYTHON_VERSION=3.8
- DOCKER_TEST_IMAGE=multibuild/xenial_{PLAT}
- name: "3.9 Xenial aarch64"
- DOCKER_TEST_IMAGE=multibuild/focal_{PLAT}
- name: "3.9 Focal aarch64"
os: linux
arch: arm64
env:
- PLAT=aarch64
- MB_ML_VER=2014
- MB_PYTHON_VERSION=3.9
- DOCKER_TEST_IMAGE=multibuild/xenial_{PLAT}
- DOCKER_TEST_IMAGE=multibuild/focal_{PLAT}
- name: "3.10 Focal aarch64"
os: linux
arch: arm64
env:
- PLAT=aarch64
- MB_ML_VER=2014
- MB_PYTHON_VERSION=3.10
- DOCKER_TEST_IMAGE=multibuild/focal_{PLAT}

before_install:
- source multibuild/common_utils.sh
Expand Down

0 comments on commit f27fe2a

Please sign in to comment.