-
Notifications
You must be signed in to change notification settings - Fork 5
35 lines (34 loc) · 1.04 KB
/
LinuxImages.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Run Reporting Engine Tests under Linux
on:
pull_request:
paths-ignore:
- '*.md'
- '.github/workflows/codecov-nightly.yml'
jobs:
build:
strategy:
fail-fast: false
matrix:
r_version: [4.1.0] #[3.6.3, 4.1.0]
os_version: [bionic] #[centos7, bionic]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build
uses: docker/build-push-action@v2
with:
context: .
file: .github/workflows/Dockerfile
build-args: |
r_version=${{ matrix.r_version }}
os_version=${{ matrix.os_version }}
push: false
tags: |
ghcr.io/open-systems-pharmacology/tests_ospsuite.reportingengine-r${{ matrix.r_version }}-${{ matrix.os_version }}:latest