Skip to content
This repository has been archived by the owner on Sep 3, 2024. It is now read-only.

Testing Actions #96

Merged
merged 5 commits into from
Aug 21, 2019
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
47 changes: 47 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Build

on:
pull_request:
push:
branches:
- master

jobs:
continuous-integration:
strategy:
fail-fast: false
matrix:
env:
- library-version: 1.2.0-beta.4
container-runtime-version: 2.2.5
container-runtime: alpine3.9
runtime: alpine-x64
- library-version: 1.2.0-beta.4
container-runtime-version: 2.2.5
container-runtime: alpine3.8
runtime: alpine-x64
- library-version: 1.2.0-beta.4
container-runtime-version: 2.2.5
container-runtime: stretch-slim
runtime: debian.9-x64
- library-version: 1.2.0-beta.4
container-runtime-version: 2.2.5
container-runtime: bionic
runtime: ubuntu.18.04-x64
runs-on: ubuntu-latest
name: continuous-integration/github/${{ matrix.env.container-runtime }}
steps:
- name: filter
if: github.event_name == 'pull_request'
uses: actions/bin/filter@master
with:
action: "opened|synchronize|reopened"
- name: checkout
uses: actions/checkout@master
- name: build
run: "./build.sh"
env:
LIBRARY_VERSION: ${{ matrix.env.library-version }}
CONTAINER_RUNTIME_VERSION: ${{ matrix.env.container-runtime-version }}
CONTAINER_RUNTIME: ${{ matrix.env.container-runtime }}
RUNTIME: ${{ matrix.env.runtime }}