You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
432 B
24 lines
432 B
version: 2 |
|
jobs: |
|
diablo_109b: |
|
docker: |
|
- image: diasurgical/riivaaja:stable |
|
steps: |
|
- checkout |
|
- run: make -f MakefileVC |
|
linux: |
|
docker: |
|
- image: debian:stretch-backports |
|
steps: |
|
- checkout |
|
- run: apt-get update -y |
|
- run: apt-get install -y mingw-w64 |
|
- run: make |
|
- run: make debug |
|
|
|
workflows: |
|
version: 2 |
|
testflow: |
|
jobs: |
|
- diablo_109b |
|
- linux
|
|
|