summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2022-11-28 21:40:09 +0800
committerMatt Johnston <matt@ucc.asn.au>2022-11-28 21:40:09 +0800
commitbd94cb712c2e34979bf1a1a4f0eecccc1d0aec4d (patch)
tree69f5ae09780b4df6ddd4b58931e94dfd610913d8
parentcf7f9350b839bfd36e4909eb5462e70aed191f39 (diff)
downloaddropbear-bd94cb712c2e34979bf1a1a4f0eecccc1d0aec4d.tar.gz
Another attempt to make CI work
-rw-r--r--.github/workflows/build.yml15
1 files changed, 8 insertions, 7 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index e7683f5..15bdbd8 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -82,7 +82,7 @@ jobs:
- name: most options disabled
configure_flags: --disable-harden --disable-zlib --disable-openpty --disable-lastlog
- sanitykey: no
+ runcheck: 'no'
localoptions: |
#define DROPBEAR_RSA 0
#define INETD_MODE 0
@@ -208,6 +208,7 @@ jobs:
run: make install
- name: keys
+ if: ${{ matrix.runcheck != 'no' }}
run: |
mkdir -p ~/.ssh
# remove old files so we can rerun in-place with "act -r" during test development
@@ -235,22 +236,22 @@ jobs:
# Sanity check that the binary runs
- name: genrsa
- if: ${{ matrix.sanitykey != 'no' }}
+ if: ${{ matrix.runcheck != 'no' }}
run: ~/inst/bin/dropbearkey -t rsa -f testrsa
- name: gendss
- if: ${{ matrix.sanitykey != 'no' }}
+ if: ${{ matrix.runcheck != 'no' }}
run: ~/inst/bin/dropbearkey -t dss -f testdss
- name: genecdsa256
- if: ${{ matrix.sanitykey != 'no' }}
+ if: ${{ matrix.runcheck != 'no' }}
run: ~/inst/bin/dropbearkey -t ecdsa -f testec256 -s 256
- name: genecdsa384
- if: ${{ matrix.sanitykey != 'no' }}
+ if: ${{ matrix.runcheck != 'no' }}
run: ~/inst/bin/dropbearkey -t ecdsa -f testec384 -s 384
- name: genecdsa521
- if: ${{ matrix.sanitykey != 'no' }}
+ if: ${{ matrix.runcheck != 'no' }}
run: ~/inst/bin/dropbearkey -t ecdsa -f testec521 -s 521
- name: gened25519
- if: ${{ matrix.sanitykey != 'no' }}
+ if: ${{ matrix.runcheck != 'no' }}
run: ~/inst/bin/dropbearkey -t ed25519 -f tested25519
- name: fuzz