Skip to content
This repository has been archived by the owner on Sep 26, 2019. It is now read-only.

Fix benchmark compilation #980

Merged
merged 6 commits into from
Feb 26, 2019
Merged
Show file tree
Hide file tree
Changes from 4 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
3 changes: 3 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,9 @@ try {
stage(stage_name + 'Check javadoc') {
sh './gradlew --no-daemon --parallel javadoc'
}
stage(stage_name + 'Compile Benchmarks') {
sh './gradlew --no-daemon --parallel compileJmh'
}
} finally {
archiveArtifacts '**/build/reports/**'
archiveArtifacts '**/build/test-results/**'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ public MessageFrame.Builder createMessageFrameBuilder() {
.messageFrameStack(messageFrame.getMessageFrameStack())
.blockchain(messageFrame.getBlockchain())
.worldState(messageFrame.getWorldState())
.privateWorldStates(messageFrame.getPrivateWorldStates())
.initialGas(messageFrame.getRemainingGas())
.address(messageFrame.getContractAddress())
.originator(messageFrame.getOriginatorAddress())
Expand Down