diff options
| author | Sacheendra Talluri <sacheendra.t@gmail.com> | 2025-03-20 10:16:46 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-20 10:16:46 +0100 |
| commit | 1e35c61cd31b8bfb33a6ccbb46b08c0466518e6c (patch) | |
| tree | 261c84148cd045246bdc2ad7aa3c41524356b699 /.github | |
| parent | 6211b887b68b3ebc9245fada1c0f36725955b052 (diff) | |
Adds load shifting over time (#319)
* Start time shifting
* Existing experiments work with new columns
* Remove unused traces dir
* Update java to 21 LTS and jacoco to be compatible
* Minimal working timeshifting
* Timeshift scheduler linked as carbon receiver
* Add basic tests for timeshift scheduler
* Run spotless apply
* Modify tarce format tests to support new fields
* Change all mentions of java 19 to 21
* Add a deferAll option to workload to make all tasks deferrable
* Run spotless apply
* Copy traces from resources in web dockerfile
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/build.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/publish.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/release.yml | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e008127f..6d9cca16 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,10 +14,10 @@ jobs: strategy: matrix: os: [ ubuntu-22.04 ] - java: [ 19 ] + java: [ 21 ] include: - os: windows-2022 - java: 19 + java: 21 steps: - name: Checkout repository uses: actions/checkout@v4 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 9b83de14..294be1d1 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -96,7 +96,7 @@ jobs: uses: actions/setup-java@v4 with: distribution: 'zulu' - java-version: 19 + java-version: 21 - name: Prepare id: prep run: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1efb1f7f..05cf997c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: uses: actions/setup-java@v4 with: distribution: 'zulu' - java-version: 19 + java-version: 21 - name: Publish with Gradle uses: gradle/actions/setup-gradle@v3 with: |
