mirror of
https://github.com/nasa/trick.git
synced 2024-12-18 20:57:55 +00:00
b724f502b3
* fix tests for 32 bit mode * fix issues with mongoose build * Update docker.yml
20 lines
377 B
YAML
20 lines
377 B
YAML
name: Test Docker Hub Images
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * 0'
|
|
|
|
jobs:
|
|
latest:
|
|
runs-on: ubuntu-18.04
|
|
container: docker://nasatrick/${{matrix.container}}:latest
|
|
strategy:
|
|
matrix:
|
|
container: [trick_centos7, trick_centos8, trick_ubuntu1804]
|
|
steps:
|
|
- name: run tests
|
|
run: |
|
|
cd /trick*
|
|
make test
|
|
|