Skip to content

Commit

Permalink
Merge branch 'arith-dev' into 1349-fixing-issues-related-to-tracing-a…
Browse files Browse the repository at this point in the history
…ll-blocks-in-the-reference-tests
  • Loading branch information
OlivierBBB authored Oct 2, 2024
2 parents feb300d + 3a1bfb0 commit 8f6678f
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 61 deletions.
65 changes: 8 additions & 57 deletions .github/workflows/gradle-nightly-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,64 +9,8 @@ env:
CARGO_NET_GIT_FETCH_WITH_CLI: true

jobs:
tests:
nightly-tests:
runs-on: ubuntu-latest-128
steps:
- uses: webfactory/ssh-agent@v0.7.0
with:
ssh-private-key: |
${{ secrets.CONSTRAINTS_SSH_KEY }}
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive

- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: 21
distribution: temurin

- name: Install Rust
uses: actions-rust-lang/setup-rust-toolchain@v1

# The asset URL for the latest release can be found with:
# curl -L -H "Accept: application/vnd.github+json" \
# -H "Authorization: Bearer YOUR_GH_API_TOKEN" \
# -H "X-GitHub-Api-Version: 2022-11-28" \
# https://api.github.com/repos/ConsenSys/corset/releases/latest
# | jq '.assets[] | select(.name|endswith("x86_64-unknown-linux-musl.tar.gz")) | .url'
- name: Install Corset
run: RUSTFLAGS=-Awarnings cargo install --git ssh://git@github.com/ConsenSys/corset --tag v9.7.13 --locked --force
# run: |
# curl -L \
# -H "Accept: application/octet-stream" \
# -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
# -H "X-GitHub-Api-Version: 2022-11-28" \
# -o corset.tar.gz \
# https://api.github.com/repos/Consensys/corset/releases/assets/151396061
# tar xzf corset.tar.gz
# mv corset $HOME
# echo $HOME >> $GITHUB_PATH

- name: Run Nightly tests
run: ./gradlew nightlyTests
env:
JAVA_OPTS: -Dorg.gradle.daemon=false
CORSET_FLAGS: fields,expand,expand,expand
NIGHTLY_TESTS_PARALLELISM: 4

- name: Upload test report
if: always()
uses: actions/upload-artifact@v3
with:
name: nightly-tests-report
path: build/reports/tests/**/*

go-corset-tests:
runs-on: ubuntu-latest-128
continue-on-error: true
steps:
- uses: webfactory/ssh-agent@v0.7.0
with:
Expand Down Expand Up @@ -102,3 +46,10 @@ jobs:
JAVA_OPTS: -Dorg.gradle.daemon=false
CORSET_FLAGS: disable
GOCORSET_FLAGS: -wd --ansi-escapes=false --report --air

- name: Upload test report
if: always()
uses: actions/upload-artifact@v3
with:
name: nightly-tests-report
path: build/reports/tests/**/*
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 0.8.0-rc1
* feat: update Linea Besu to 24.10-delivery34 ([#1354](https://github.com/Consensys/linea-tracer/pull/1354))
* fix: remove RpcCliOptions from AbstractLineaSharedOptionsPlugin in order not to make it visible for external plugins ([#1348](https://github.com/Consensys/linea-tracer/pull/1348))
* refactor: extract all trace writing logic in one place to be re-used and more consistent ([#1344](https://github.com/Consensys/linea-tracer/pull/1344))
* fix: convert --plugin-linea-rpc-concurrent-requests-limit option to be a private option ([#1342](https://github.com/Consensys/linea-tracer/pull/1342))
* fix(selfdestruct): immutable map ([#1337](https://github.com/Consensys/linea-tracer/pull/1337))
* feat(replayTest): parametric ([#1273](https://github.com/Consensys/linea-tracer/pull/1273))
* test(shf): add extensive test ([#1320](https://github.com/Consensys/linea-tracer/pull/1320))
* chore: disable running spotlessCheck after compilation phase ([#1339](https://github.com/Consensys/linea-tracer/pull/1339))
* fix(SELFDESTRUCT): fixed deloyment number double increments + assumptions about initial values ([#1336](https://github.com/Consensys/linea-tracer/pull/1336))
* Add CI job for weekly tests ([#1329](https://github.com/Consensys/linea-tracer/pull/1329))
* fix(invalidCodePrefix): make it work ([#1330](https://github.com/Consensys/linea-tracer/pull/1330))

## 0.7.0-rc1
* chore: don't postTxDefers TrasactionMetaData ([#1325](https://github.com/Consensys/linea-tracer/pull/1325))
* chore: upgrade Linea Besu to 24.9-delivery33 ([#1328](https://github.com/Consensys/linea-tracer/pull/1328))
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
releaseVersion=0.7.0-rc1
besuVersion=24.9-delivery33
releaseVersion=0.8.0-rc1
besuVersion=24.10-delivery34
besuArtifactGroup=io.consensys.linea-besu
distributionIdentifier=linea-tracer
distributionBaseUrl=https://artifacts.consensys.net/public/linea-besu/raw/names/linea-besu.tar.gz/versions/
Expand Down
4 changes: 2 additions & 2 deletions gradle/tests.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ tasks.withType(Test).configureEach {
showSkipped false

// set to false to hide failed tests
showFailed false
showFailed true

// enable to see standard out and error streams inline with the test results
showStandardStreams true
Expand All @@ -110,7 +110,7 @@ tasks.withType(Test).configureEach {
showSkippedStandardStreams false

// set to false to hide failed standard out and error streams
showFailedStandardStreams false
showFailedStandardStreams true
}

useJUnitPlatform()
Expand Down

0 comments on commit 8f6678f

Please # to comment.