Skip to content

Update docker scripts. #1859

Update docker scripts.

Update docker scripts. #1859

name: windows-msys2-64bit-debug
on: [push]
jobs:
build:
runs-on: [windows-latest]
steps:
- uses: actions/checkout@main
- name: clean
run: |
set PATH=C:\PortableGit\bin;C:\msys64\usr\bin;C:\msys64\mingw64\bin;%PATH%
make clean
shell: cmd
- name: build debug
run: |
set PATH=C:\PortableGit\bin;C:\msys64\usr\bin;C:\msys64\mingw64\bin;%PATH%
make -j 4 DEBUG=yes
make -j 4 shared DEBUG=yes
shell: cmd
- name: Artifact
uses: actions/upload-artifact@v1
with:
name: admb_msys2_debug
path: build\\admb
- name: gtests
run: |
set PATH=C:\PortableGit\bin;C:\msys64\usr\bin;C:\msys64\mingw64\bin;%PATH%
make --directory=tests\\gtests
shell: cmd
- name: tests
run: |
set PATH=C:\PortableGit\bin;C:\msys64\usr\bin;C:\msys64\mingw64\bin;%PATH%
make --directory=tests examples
make --directory=tests outputs.txt
shell: cmd
- name: Artifact
uses: actions/upload-artifact@v1
with:
name: outputs
path: outputs.txt