Skip to content

Commit

Permalink
Enable recovery-check step
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfgangwalther committed Mar 28, 2024
1 parent cf82e5f commit 818e507
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 16 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/run.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,6 @@ jobs:
buildfarm-client:alpine \
--from-source /mnt/source \
--config ${{ matrix.builder }}.conf \
--skip-steps=recovery-check \
--skip-suites=recovery \
${{ matrix.branch }}
- uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1
if: always()
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,7 @@ jobs:
buildfarm-client:alpine \
--test \
--from-source /mnt/source \
--config ${{ matrix.builder }}.conf \
--skip-steps=recovery-check \
--skip-suites=recovery
--config ${{ matrix.builder }}.conf
- uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1
if: always()
with:
Expand All @@ -64,4 +62,3 @@ jobs:
if: github.ref == 'refs/heads/main'
with:
path: build
key: ${{ steps.restore-cache.outputs.cache-primary-key }}
11 changes: 3 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ RUN apk add \
perl-lwp-protocol-https \
perl-mozilla-ca \
python3-dev \
tini \
tcl-dev \
zlib-dev \
zstd-dev
Expand All @@ -51,11 +52,5 @@ RUN git apply client.patch
COPY docker-entrypoint.sh /
COPY *.conf /usr/src

ENTRYPOINT ["/docker-entrypoint.sh"]
CMD [ \
"--test", \
"--config", \
"autoconf.conf", \
"--skip-steps=recovery-check", \
"--skip-suites=recovery" \
]
ENTRYPOINT ["/sbin/tini", "--", "/docker-entrypoint.sh"]
CMD ["--test", "--config", "autoconf.conf"]
2 changes: 0 additions & 2 deletions test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,4 @@ docker run --rm \
--test \
--from-source /mnt/source \
--config autoconf.conf \
--skip-steps=recovery-check \
--skip-suites=recovery \
"$@"

0 comments on commit 818e507

Please sign in to comment.