Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
d7de973
Update "on" conditions for "transport" CI workflow
khaeru May 11, 2026
972b735
TEMPORARY Use PR branch for "transport" workflow
khaeru Apr 20, 2026
51af63c
Check the baseline for this branch
r-aneeque Jun 26, 2026
ed2d980
Check the baseline for this branch
r-aneeque Jun 26, 2026
b99988b
Comment out 2025 capacity values for ELC_100 and PHEV_ptrp
r-aneeque Jun 26, 2026
8626000
Add year = 1990 to avoid back-casting different values
r-aneeque Jun 26, 2026
f126cd6
Setting up for CircEUlar runs
r-aneeque Jun 26, 2026
f6455fb
Make load factor values fixed in historical periods
r-aneeque Jun 26, 2026
1b6cd9b
Setup for CircEUlar-N
r-aneeque Jun 26, 2026
7bc47b7
Setting up CircEUlar-N
r-aneeque Jun 26, 2026
00eb2c4
Run SSP2 to check on stocks
r-aneeque Jun 26, 2026
f6b0a79
Setup for CircEUlar-R
r-aneeque Jun 26, 2026
098cad3
Values for CircEUlar-R
r-aneeque Jun 26, 2026
15d2f61
Setup for CircEUlar-R
r-aneeque Jun 27, 2026
be18887
Run CircEUlar-N #BAU-SSP2-baseline-SSP2-CT-BAU
r-aneeque Jun 27, 2026
34c6fa2
Run CircEUlar-N #BAU-SSP2-baseline-SSP2-CT-BAU
r-aneeque Jun 27, 2026
74eecde
Run CircEUlar-All-digsyC-medRecycle-medSharing-CC-highLife
r-aneeque Jun 27, 2026
456ea8b
Run CircEUlar-Slow-SSP2-baseline-SSP2-CT-highLife
r-aneeque Jun 27, 2026
8f39f65
Run CircEUlar-S-SSP2-baseline-SSP2-CT-highLife-2e17
r-aneeque Jun 27, 2026
dc575d3
Run CircEUlar-S-SSP2-baseline-SSP2-CT-highLife-2e17
r-aneeque Jun 27, 2026
e0360ec
CircEUlar-A-SSP2-baseline-SSP2-CT-highLife-2e17
r-aneeque Jun 27, 2026
f0b4e51
CircEUlar-Narrow-digsyC-Medium-medSharing-CC-SSP2-2e17
r-aneeque Jun 27, 2026
90d8be9
Run SSP2-R-SSP2-baseline-SSP2-CT-SSP2-2e17
r-aneeque Jun 27, 2026
9d7ee8b
Run CircEUlar-Slow-SSP2-baseline-SSP2-CT-highLife-2e17
r-aneeque Jun 27, 2026
0310889
Run CircEUlar-A-digsyC-medRecycle-medSharing-CC-highLife
r-aneeque Jun 27, 2026
7646f9e
CircEUlar-A-digsyC-medRecycle-medSharing-CC-highLife-2e17
r-aneeque Jun 27, 2026
0fe920e
CircEUlar-A-digsyC-medRecycle-medSharing-CC-highLife
r-aneeque Jun 27, 2026
e0c419d
Run CircEUlar-A-digsyC-medRecycle-medSharing-CC-highLife
r-aneeque Jun 28, 2026
7ea3116
Run CircEUlar-A-digsyC-medRecycle-medSharing-CC-highLife-2e17
r-aneeque Jun 28, 2026
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
25 changes: 16 additions & 9 deletions .github/workflows/transport.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ env:

# Ref to clone in the workflow.
# Default: use github.ref, e.g. 'main' for the schedule trigger.
ref: "main"
ref: "transport-runs-2026-w26"

# Starting point of the workflow.
#
Expand All @@ -29,19 +29,25 @@ env:
# - Ensure there is NO trailing comma on the last line.
labels: >-
[
"SSP2",
"SSP2 exo price c59e",
"SSP2 tax"
"SSP2 exp price 2e17"
]

# Run the workflow…
on:
# Uncomment these lines for debugging, but leave them commented on 'main'
# pull_request:
# branches: [ main ]
# push:
# branches: [ main ]
# …on pushes to certain branches…
push:
branches:
# …with names starting "transport-runs-202…
- transport-runs-202*
# …with names starting "transport/*"
# NB Uncomment this for debugging only.
# - transport/*

# …on a daily schedule
schedule:
- cron: "0 1 * * *" # 01:00 UTC = 02:00 CET = 03:00 CEST

# …if dispatched manually from the GitHub website or CLI
workflow_dispatch: {}

# Cancel previous runs that have not completed
Expand All @@ -58,6 +64,7 @@ jobs:
run: |
echo '{
"ref": "${{ env.ref || github.ref }}",
"remote": "https://github.com/iiasa/message-ix-models.git",
"base": "${{ env.base }}",
"from-step": "${{ env.from-step }}",
"labels": ${{ env.labels }}
Expand Down
Loading