Skip to content

Migrate from imp to importlib #83

Migrate from imp to importlib

Migrate from imp to importlib #83

Workflow file for this run

name: 'GH Actions - PR'
on: [ pull_request ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
include:
# only do one Deb file because they're so large
- FROM: 'debian:buster'
- FROM: 'opensuse/leap:15.4'
- FROM: 'opensuse/leap:15.3'
- FROM: 'opensuse/leap:15.2'
- FROM: 'fedora:37'
- FROM: 'fedora:36'
- FROM: 'fedora:35'
- FROM: 'rockylinux:9.0'
- FROM: 'rockylinux:8.6'
- FROM: 'rockylinux:8.5'
- FROM: 'manjarolinux/base'
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 2
submodules: false
# Ensure PRs are built against the PR Head
# As opposed to the merge commit
- name: Move to PR HEAD
run: git checkout HEAD^2
- name: Run CI
env:
FROM: ${{ matrix.FROM }}
COMPILER: 'clang'
FLAGS: ''
MY_OS_NAME: linux
IS_RELEASE: 0
run: script/cibuild $FLAGS