Skip to content

Commit

Permalink
chore(ci): add nextNet build target for feature libp2p (#6674)
Browse files Browse the repository at this point in the history
Description
Add nextNet build target for feature libp2p

Motivation and Context
Build binaries for nextNet for feature libp2p

How Has This Been Tested?
Builds in local fork
  • Loading branch information
leet4tari authored Nov 8, 2024
1 parent 50bd9ae commit aa19f7c
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build_binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,13 +114,18 @@ jobs:
- name: Declare TestNet for tags
id: set-tari-network
# Don't forget to comment out the below if, when force testing with GHA_NETWORK
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
if: ${{ ( startsWith(github.ref, 'refs/tags/v') ) || ( startsWith(github.ref, 'refs/heads/build-bins-nextnet') ) }}
env:
GHA_NETWORK: ${{ github.ref_name }}
# GHA_NETWORK: "v1.0.0-rc.4"
shell: bash
run: |
source buildtools/multinet_envs.sh ${{ env.GHA_NETWORK }}
BRANCH_NAME=$(echo "${GITHUB_REF}" | sed 's|refs/heads/||')
if [[ "${BRANCH_NAME}" == "build-bins-nextnet"* ]]; then
source buildtools/multinet_envs.sh "v1.8.0-rc.0"
else
source buildtools/multinet_envs.sh ${{ env.GHA_NETWORK }}
fi
echo ${TARI_NETWORK}
echo ${TARI_TARGET_NETWORK}
echo ${TARI_NETWORK_DIR}
Expand Down

0 comments on commit aa19f7c

Please sign in to comment.