diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-10-25 16:16:13 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-25 16:16:13 +0200 |
| commit | a41cd2504f15f3e3e49eb533faca390911cc5110 (patch) | |
| tree | f35e7e5c65e2985cf34ad7689526d5b5c0815230 /.github/workflows | |
| parent | aa9b32f8cd1467e9718959f400f6777e5d71737d (diff) | |
| parent | fe8cd32c3f79d2a6c898a1c8809792e35440a539 (diff) | |
merge: Address several regressions in simulator
This pull request addresses several regressions that have been introduced in the past few pull requests.
- Fix queue resizing logic
- Change clock resolution from milliseconds to nanoseconds in `OtelClockAdapter`
- Compute energy usage in absence of convergence
- Fix duplicate classpath entries
- Fix release workflow
**Breaking API Changes**
- `OtelClockAdapter` now exports time in nanoseconds as the method contract describes.
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/release.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c525eb97..c1f2864c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,9 +24,9 @@ jobs: run: chmod +x gradlew - uses: actions/cache@v2 with: - path:| - ~/.gradle/caches - ~/.gradle/wrapper + path: | + ~/.gradle/caches + ~/.gradle/wrapper key: ${{ runner.os }}-${{ matrix.java }}-gradle-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }} restore-keys: | ${{ runner.os }}-${{ matrix.java }}-gradle- |
