[openssh-commits] [openssh] 02/03: Always save config.h as build artifact.
git+noreply at mindrot.org
git+noreply at mindrot.org
Wed Jan 5 11:52:13 AEDT 2022
This is an automated email from the git hooks/post-receive script.
dtucker pushed a commit to branch master
in repository openssh.
commit bbf285164df535f0d38c36237f007551bbdae27f
Author: Darren Tucker <dtucker at dtucker.net>
Date: Sun Dec 26 10:31:15 2021 +1100
Always save config.h as build artifact.
Should allow better comparison between failing and succeeding test
platforms.
---
.github/workflows/c-cpp.yml | 5 +++++
.github/workflows/selfhosted.yml | 5 +++++
2 files changed, 10 insertions(+)
diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml
index 3bd1f6c2..9df10e7c 100644
--- a/.github/workflows/c-cpp.yml
+++ b/.github/workflows/c-cpp.yml
@@ -75,6 +75,11 @@ jobs:
run: autoreconf
- name: configure
run: ./.github/configure.sh ${{ matrix.configs }}
+ - name: save config
+ uses: actions/upload-artifact at v2
+ with:
+ name: ${{ matrix.os }}-${{ matrix.configs }}-config
+ path: config.h
- name: make clean
run: make clean
- name: make
diff --git a/.github/workflows/selfhosted.yml b/.github/workflows/selfhosted.yml
index 95c11690..7a2e4b78 100644
--- a/.github/workflows/selfhosted.yml
+++ b/.github/workflows/selfhosted.yml
@@ -74,6 +74,11 @@ jobs:
run: vmstartup
- name: configure
run: vmrun ./.github/configure.sh ${{ matrix.configs }}
+ - name: save config
+ uses: actions/upload-artifact at v2
+ with:
+ name: ${{ matrix.os }}-${{ matrix.configs }}-config
+ path: config.h
- name: make clean
run: vmrun make clean
- name: make
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list