2019-11-13 18:03:11 +00:00
|
|
|
name: Test Docker Hub Images
|
|
|
|
|
2019-11-18 16:15:30 +00:00
|
|
|
on: [push]
|
2019-11-13 18:03:11 +00:00
|
|
|
|
|
|
|
jobs:
|
2019-11-18 16:15:30 +00:00
|
|
|
centos7:
|
2019-11-13 18:03:11 +00:00
|
|
|
runs-on: ubuntu-18.04
|
2019-11-18 16:15:30 +00:00
|
|
|
container: docker://nasatrick/trick_centos7:latest
|
2019-11-13 18:03:11 +00:00
|
|
|
steps:
|
|
|
|
- name: run tests
|
|
|
|
run: |
|
2019-11-18 16:15:30 +00:00
|
|
|
cd /trick*
|
2019-11-13 18:03:11 +00:00
|
|
|
make test
|
2019-11-18 16:15:30 +00:00
|
|
|
|
|
|
|
centos8:
|
2019-11-13 18:17:40 +00:00
|
|
|
runs-on: ubuntu-18.04
|
2019-11-18 16:15:30 +00:00
|
|
|
container: docker://nasatrick/trick_centos8:latest
|
2019-11-13 18:17:40 +00:00
|
|
|
steps:
|
|
|
|
- name: run tests
|
|
|
|
run: |
|
2019-11-18 16:15:30 +00:00
|
|
|
cd /trick*
|
2019-11-13 18:17:40 +00:00
|
|
|
make test
|
2019-11-18 16:15:30 +00:00
|
|
|
|
|
|
|
ubuntu1804:
|
|
|
|
runs-on: ubuntu-18.04
|
|
|
|
container: docker://nasatrick/trick_ubuntu1804:latest
|
|
|
|
steps:
|
|
|
|
- name: run tests
|
|
|
|
run: |
|
|
|
|
cd /trick*
|
|
|
|
make test
|