Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix builds action #4372

Merged
merged 2 commits into from
Feb 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci-build-upload-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:

- name: Build deb packages
shell: bash
run: scripts/ppa.sh ${{ secrets.PPA_SIGNING_KEY }}
run: make deb

- name: Prepare build output
shell: bash
Expand All @@ -77,7 +77,7 @@ jobs:
cp target/release/nym-network-statistics $OUTPUT_DIR
cp target/release/nym-cli $OUTPUT_DIR
cp target/release/explorer-api $OUTPUT_DIR
cp ppa/debian/* $OUTPUT_DIR
cp target/debian/*.deb $OUTPUT_DIR

- name: Deploy branch to CI www
continue-on-error: true
Expand Down
15 changes: 11 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ help:
@echo " clippy: run clippy for all workspaces"
@echo " test: run clippy, unit tests, and formatting."
@echo " test-all: like test, but also includes the expensive tests"
@echo " ppa: build debian package and generate files required for PPA update"
@echo " deb: build debian packages

# -----------------------------------------------------------------------------
# Meta targets
Expand Down Expand Up @@ -176,6 +176,13 @@ run-api-tests:
cd nym-api/tests/functional_test && yarn test:qa

# Build debian package, and update PPA
# Requires base64 encode GPG key to be set up in environment PPA_SIGNING_KEY
# ppa: build-nym-mixnode build-nym-gateway
# scripts/ppa.sh
deb-mixnode: build-nym-mixnode
cargo deb -p nym-mixnode

deb-gateway: build-nym-gateway
cargo deb -p nym-gateway

deb-cli: build-nym-cli
cargo deb -p nym-cli

deb: deb-mixnode deb-gateway deb-cli
22 changes: 0 additions & 22 deletions scripts/ppa.sh

This file was deleted.

Loading