Skip to content

Commit

Permalink
build: fix duplicate build
Browse files Browse the repository at this point in the history
  • Loading branch information
viceice committed Aug 12, 2024
1 parent 24dceef commit 2f6ee02
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,17 @@ jobs:
dry-run: ${{github.ref != 'refs/heads/main'}}
token: ${{ secrets.GITHUB_TOKEN }}
last-only: true

# Catch-all required check for matrix
success:
needs:
- build
runs-on: ubuntu-latest
timeout-minutes: 1
if: always()
steps:
- name: Fail for failed or cancelled build tests
if: |
needs.build.result == 'failure' ||
needs.build.result == 'cancelled'
run: exit 1
4 changes: 0 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,3 @@ ENV TOOL_NAME=wally
RUN install-builder.sh

WORKDIR /usr/src/wally

ENV OPENSSL_LIB_DIR=/usr/lib/x86_64-linux-gnu OPENSSL_INCLUDE_DIR=/usr/include/openssl

RUN builder.sh 0.3.2

0 comments on commit 2f6ee02

Please sign in to comment.