update github workflows

This commit is contained in:
Scott Fennell 2019-11-13 12:17:40 -06:00
parent f58e8ba01b
commit 6c60a47e84
2 changed files with 10 additions and 21 deletions

View File

@ -3,7 +3,7 @@ name: Test Docker Hub Images
on:
schedule:
# Run once a week at midnight on Sunday morning
- cron '0 0 * * 0'
- cron: '0 0 * * 0'
jobs:
centos7-17.5.0:
@ -14,3 +14,12 @@ jobs:
run: |
cd /trick-17.5.0
make test
ubuntu1804-17.5.0:
runs-on: ubuntu-18.04
container: docker://nasatrick/trick_ubuntu1804:17.5.0
steps:
- name: run tests
run: |
cd /trick-17.5.0
make test

View File

@ -135,7 +135,6 @@ jobs:
ncurses-devel openmotif openmotif-devel perl perl-Digest-MD5
python-devel swig zlib-devel udunits2 udunits2-devel
java-1.8.0-openjdk-devel gtest-devel
- name: Build Trick
run: |
export MAKEFLAGS=-j4
@ -170,22 +169,3 @@ jobs:
- name: Run tests
run: make test
dockerhub-centos7:
runs-on: ubuntu-18.04
container: docker://nasatrick/trick_centos7:17.5.0
steps:
- name: run tests
run: |
cd /trick-17.5.0
make test
dockerhub-ubuntu1804:
runs-on: ubuntu-18.04
container: docker://nasatrick/trick_ubuntu1804:17.5.0
steps:
- name: run tests
run: |
cd /trick-17.5.0
make test