Skip to content

Commit

Permalink
fix: CI fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dhedey committed Feb 14, 2025
1 parent ee37912 commit f64cbdf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -253,9 +253,7 @@ jobs:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle
- name: Build Node
run: ./gradlew build
- name: Run Node in the background
- name: Build and run node in the background
env:
# This is to skip keygen step
RADIXDLT_NODE_KEY: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAY=
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -208,12 +208,7 @@ public void protocol_update_process_updates_status_summary() throws ApiException
.get()
.getNewValue()
.getSubstateData();
// This assertion ensures that:
// * The testnet_protocol_config is in line with the ProtocolConfig.VERSION_NAMES
// * It should be that:
// * testnet_protocol_config is set to run the latest protocol update automatically
// * ProtocolConfig.VERSION_NAMES includes the latest protocol update
assertEquals(ProtocolConfig.LATEST_PROTOCOL_VERSION_NAME, latestStatus.getProtocolVersion());
assertEquals(ProtocolConfig.CUTTLEFISH_PART2_PROTOCOL_VERSION_NAME, latestStatus.getProtocolVersion());
assertEquals(ProtocolUpdateStatusType.COMPLETE, latestStatus.getUpdateStatus().getType());
}
}
Expand Down

0 comments on commit f64cbdf

Please sign in to comment.