mirror of git://anongit.mindrot.org/openssh.git
Always save config.h as build artifact.
Should allow better comparison between failing and succeeding test platforms.
This commit is contained in:
parent
03bd4ed0db
commit
bbf285164d
|
@ -75,6 +75,11 @@ jobs:
|
||||||
run: autoreconf
|
run: autoreconf
|
||||||
- name: configure
|
- name: configure
|
||||||
run: ./.github/configure.sh ${{ matrix.configs }}
|
run: ./.github/configure.sh ${{ matrix.configs }}
|
||||||
|
- name: save config
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: ${{ matrix.os }}-${{ matrix.configs }}-config
|
||||||
|
path: config.h
|
||||||
- name: make clean
|
- name: make clean
|
||||||
run: make clean
|
run: make clean
|
||||||
- name: make
|
- name: make
|
||||||
|
|
|
@ -74,6 +74,11 @@ jobs:
|
||||||
run: vmstartup
|
run: vmstartup
|
||||||
- name: configure
|
- name: configure
|
||||||
run: vmrun ./.github/configure.sh ${{ matrix.configs }}
|
run: vmrun ./.github/configure.sh ${{ matrix.configs }}
|
||||||
|
- name: save config
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: ${{ matrix.os }}-${{ matrix.configs }}-config
|
||||||
|
path: config.h
|
||||||
- name: make clean
|
- name: make clean
|
||||||
run: vmrun make clean
|
run: vmrun make clean
|
||||||
- name: make
|
- name: make
|
||||||
|
|
Loading…
Reference in New Issue