Skip to content

Commit

Permalink
Attempt to CI at Bionic, Focal and Jammy
Browse files Browse the repository at this point in the history
  • Loading branch information
stephankramer committed Oct 31, 2022
1 parent 7aab038 commit a879b5d
Showing 1 changed file with 23 additions and 3 deletions.
26 changes: 23 additions & 3 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,30 @@ on:
- main

jobs:
Ubuntu-Focal:
ubuntu-local-builds:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
name: [ "Local Build Bionic", "Local Build Focal", "Local Build Jammy" ]
include:

- name: "Local Build Bionic"
release: bionic
python: python3.6

- name: "Local Build Focal"
release: focal
python: python3.8

- name: "Local Build Jammy"
release: impish
python: python3.10


container:
image: ubuntu:focal
image: ubuntu:$${{ matrix.release }}

steps:
- name: Check Out Repo
Expand All @@ -37,7 +57,7 @@ jobs:

- name: Testing
env:
PYTHONPATH: /tmp/lib/python3.8/site-packages
PYTHONPATH: /tmp/lib/$${{ matrix.python }}/site-packages
LD_LIBRARY_PATH: /tmp/lib
run: |
cd python
Expand Down

0 comments on commit a879b5d

Please sign in to comment.