Skip to content

Commit e6a02c6

Browse files
committed
Updated outdated Green Coding organization; Updating actions/checkout
1 parent 8e5d739 commit e6a02c6

File tree

2 files changed

+23
-24
lines changed

2 files changed

+23
-24
lines changed

.github/workflows/examples-application-testing-bare-metal.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,44 +20,44 @@ jobs:
2020
recent_examples_commit: ${{ steps.check_examples_commits.outputs.should_run }}
2121
steps:
2222
- id: check_gmt_commits
23-
uses: green-coding-berlin/green-ci-activity-checker@main
23+
uses: green-coding-solutions/green-ci-activity-checker@main
2424
with:
25-
repo: 'green-coding-berlin/green-metrics-tool'
25+
repo: 'green-coding-solutions/green-metrics-tool'
2626
branch: 'main'
2727

2828
- id: check_examples_commits
29-
uses: green-coding-berlin/green-ci-activity-checker@main
29+
uses: green-coding-solutions/green-ci-activity-checker@main
3030

3131
run-tests:
3232
needs: check-commits
3333
if: ${{ needs.check-commits.outputs.recent_examples_commit == 'true' || needs.check-commits.outputs.recent_gmt_commit == 'true' || github.event_name == 'workflow_dispatch'}}
3434
runs-on: self-hosted
3535
steps:
3636
- name: Initialize Energy Estimation
37-
uses: green-coding-berlin/eco-ci-energy-estimation@main
37+
uses: green-coding-solutions/eco-ci-energy-estimation@main
3838
with:
3939
task: start-measurement
4040

4141
- name: Checkout Examples Directory
42-
uses: actions/checkout@v3
42+
uses: actions/checkout@v4
4343
with:
4444
path: examples-directory
4545

4646
- name: Checkout Green Metrics Tool
47-
uses: actions/checkout@v3
47+
uses: actions/checkout@v4
4848
with:
49-
repository: green-coding-berlin/green-metrics-tool
49+
repository: green-coding-solutions/green-metrics-tool
5050
submodules: 'true'
5151
path: green-metrics-tool
5252

5353
- name: Energy Estimation - Get Measurement
54-
uses: green-coding-berlin/eco-ci-energy-estimation@main
54+
uses: green-coding-solutions/eco-ci-energy-estimation@main
5555
with:
5656
task: get-measurement
5757
label: setup
5858

5959
- name: 'Setup, Run, and Teardown Tests'
60-
uses: green-coding-berlin/green-metrics-tool/.github/actions/gmt-pytest@main
60+
uses: green-coding-solutions/green-metrics-tool/.github/actions/gmt-pytest@main
6161
with:
6262
metrics-to-turn-off: '--categories Machine Sensors Debug MacOS GPU'
6363
gmt-directory: './green-metrics-tool'
@@ -66,13 +66,13 @@ jobs:
6666
github-token: ${{ secrets.GITHUB_TOKEN }}
6767

6868
- name: Energy Estimation - Get Measurement
69-
uses: green-coding-berlin/eco-ci-energy-estimation@main
69+
uses: green-coding-solutions/eco-ci-energy-estimation@main
7070
with:
7171
task: get-measurement
7272
label: tests
7373

7474
- name: Energy Estimation - End Measurement
75-
uses: green-coding-berlin/eco-ci-energy-estimation@main
75+
uses: green-coding-solutions/eco-ci-energy-estimation@main
7676
with:
7777
task: display-results
7878

.github/workflows/examples-application-testing-vm.yml

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -23,64 +23,63 @@ jobs:
2323
recent_examples_commit: ${{ steps.check_examples_commits.outputs.should_run }}
2424
steps:
2525
- id: check_gmt_commits
26-
uses: green-coding-berlin/green-ci-activity-checker@main
26+
uses: green-coding-solutions/green-ci-activity-checker@main
2727
with:
28-
repo: 'green-coding-berlin/green-metrics-tool'
28+
repo: 'green-coding-solutions/green-metrics-tool'
2929
branch: 'main'
3030

3131
- id: check_examples_commits
32-
uses: green-coding-berlin/green-ci-activity-checker@main
32+
uses: green-coding-solutions/green-ci-activity-checker@main
3333
with:
34-
repo: 'green-coding-berlin/example-applications'
34+
repo: 'green-coding-solutions/example-applications'
3535
branch: 'main'
3636
workflow-id: 45266619
3737

3838
run-tests:
3939
needs: check-commits
4040
if: ${{ needs.check-commits.outputs.recent_examples_commit == 'true' || needs.check-commits.outputs.recent_gmt_commit == 'true' || github.event_name == 'workflow_dispatch'}}
41-
#runs-on: self-hosted
4241
runs-on: ubuntu-latest
4342

4443
steps:
4544
- name: Initialize Energy Estimation
46-
uses: green-coding-berlin/eco-ci-energy-estimation@main
45+
uses: green-coding-solutions/eco-ci-energy-estimation@main
4746
with:
4847
task: start-measurement
4948

5049
- name: Checkout Examples Directory
51-
uses: actions/checkout@v3
50+
uses: actions/checkout@v4
5251
with:
5352
path: examples-directory
5453

5554
- name: Checkout Green Metrics Tool
56-
uses: actions/checkout@v3
55+
uses: actions/checkout@v4
5756
with:
58-
repository: green-coding-berlin/green-metrics-tool
57+
repository: green-coding-solutions/green-metrics-tool
5958
submodules: 'true'
6059
path: green-metrics-tool
6160
ref: main
6261

6362
- name: Energy Estimation - Get Measurement
64-
uses: green-coding-berlin/eco-ci-energy-estimation@main
63+
uses: green-coding-solutions/eco-ci-energy-estimation@main
6564
with:
6665
task: get-measurement
6766
label: setup
6867

6968
- name: 'Setup, Run, and Teardown Tests'
70-
uses: green-coding-berlin/green-metrics-tool/.github/actions/gmt-pytest@main
69+
uses: green-coding-solutions/green-metrics-tool/.github/actions/gmt-pytest@main
7170
with:
7271
metrics-to-turn-off: '--categories RAPL Machine Sensors Debug CGroupV2 MacOS GPU'
7372
gmt-directory: './green-metrics-tool'
7473
tests-command: 'pytest ../../examples-directory/test/smoke_test.py -k "test_all_directories"'
7574
github-token: ${{ secrets.GITHUB_TOKEN }}
7675

7776
- name: Energy Estimation - Get Measurement
78-
uses: green-coding-berlin/eco-ci-energy-estimation@main
77+
uses: green-coding-solutions/eco-ci-energy-estimation@main
7978
with:
8079
task: get-measurement
8180
label: tests
8281

8382
- name: Energy Estimation - End Measurement
84-
uses: green-coding-berlin/eco-ci-energy-estimation@main
83+
uses: green-coding-solutions/eco-ci-energy-estimation@main
8584
with:
8685
task: display-results

0 commit comments

Comments
 (0)