summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2021-10-19 12:49:19 +0800
committerMatt Johnston <matt@ucc.asn.au>2021-10-19 12:49:19 +0800
commit47071a379020a3228b7c0fefe9874b767a16fdea (patch)
treea617575b0daaeade7d8e66059df0a680ea15b8ec /.github
parent58d89dcc1c8918db2a8c52b00f4f48aa0457c7b4 (diff)
downloaddropbear-47071a379020a3228b7c0fefe9874b767a16fdea.tar.gz
Remove caching and socat from build.yml
socat isn't needed and it consumes exit codes Caching seems impossible to invalidate
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml20
1 files changed, 2 insertions, 18 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index a8f8a4a..71f7692 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -87,25 +87,10 @@ jobs:
if: ${{ matrix.apt != 'no' }}
run: |
sudo apt-get -y update
- sudo apt-get -y install zlib1g-dev libtomcrypt-dev libtommath-dev mercurial python3-venv socat $CC
+ sudo apt-get -y install zlib1g-dev libtomcrypt-dev libtommath-dev mercurial python3-venv $CC
- uses: actions/checkout@v2
- - name: cache pip
- if: ${{ !env.ACT }}
- uses: actions/cache@v2
- with:
- path: test/venv
- key: ${{ runner.os }}-pip-${{ hashFiles('test/requirements.txt') }}
- restore-keys: ${{ runner.os }}-pip-
-
- - name: cache fuzzcorpus
- if: ${{ !env.ACT }}
- uses: actions/cache@v2
- with:
- path: fuzzcorpus
- key: "hg.ucc/fuzzcorpus"
-
- name: configure
run: ./configure $CONFIGURE_FLAGS CFLAGS="-O2 -Wall -Wno-pointer-sign $EXTRACFLAGS" --prefix="$HOME/inst" || (cat config.log; exit 1)
@@ -143,8 +128,7 @@ jobs:
- name: check
if: ${{ matrix.runcheck != 'no' }}
- # run in a TTY for some tests
- run: socat - EXEC:"make check",pty
+ run: make check
# Sanity check that the binary runs
- name: genrsa