Skip to content

Commit

Permalink
Split builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
johnoel committed Jan 15, 2020
1 parent 45e4e3f commit cc3d934
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 11 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/windows-msys2-64bit-debug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: windows-msys2-64bit

on: [push]

jobs:
build:

runs-on: [self-hosted, windows]

steps:
- uses: actions/checkout@v1
- name: clean
run: |
set PATH=C:\msys64\mingw64\bin;%PATH%
utilities\\make clean
shell: cmd
- name: build debug
run: |
set PATH=C:\msys64\mingw64\bin;%PATH%
utilities\\make DEBUG=yes
utilities\\make shared DEBUG=yes
shell: cmd
- name: Artifact
uses: actions/upload-artifact@v1
with:
name: admb_msys2_debug
path: build\\admb
- name: test
run: |
set PATH=C:\msys64\mingw64\bin;%PATH%
utilities\\make test DEBUG=yes
shell: cmd
- name: Artifact
uses: actions/upload-artifact@v1
with:
name: outputs
path: outputs-opt.txt
11 changes: 0 additions & 11 deletions .github/workflows/windows-msys2-64bit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,6 @@ jobs:
with:
name: admb_msys2
path: build\\admb
- name: debug
run: |
set PATH=C:\msys64\mingw64\bin;%PATH%
utilities\\make DEBUG=yes
utilities\\make shared DEBUG=yes
shell: cmd
- name: Artifact
uses: actions/upload-artifact@v1
with:
name: admb_msys2_debug
path: build\\admb
- name: test
run: |
set PATH=C:\msys64\mingw64\bin;%PATH%
Expand Down

0 comments on commit cc3d934

Please sign in to comment.