Skip to content

Commit 08b4472

Browse files
committed
add mesa variant in network constants
1 parent 34ab2d0 commit 08b4472

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

buildkite/src/Constants/Network.dhall

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ let List/any = Prelude.List.any
44

55
let Network
66
: Type
7-
= < Devnet | Mainnet | Berkeley | DevnetLegacy | MainnetLegacy | PreMesa1 >
7+
= < Devnet | Mainnet | Berkeley | DevnetLegacy | MainnetLegacy | PreMesa1 | Mesa >
88

99
let capitalName =
1010
\(network : Network)
@@ -15,6 +15,7 @@ let capitalName =
1515
, DevnetLegacy = "DevnetLegacy"
1616
, MainnetLegacy = "MainnetLegacy"
1717
, PreMesa1 = "PreMesa1"
18+
, Mesa = "Mesa"
1819
}
1920
network
2021

@@ -27,6 +28,7 @@ let lowerName =
2728
, DevnetLegacy = "devnet_legacy"
2829
, MainnetLegacy = "mainnet_legacy"
2930
, PreMesa1 = "hetzner-pre-mesa-1"
31+
, Mesa = "mesa"
3032
}
3133
network
3234

@@ -39,6 +41,7 @@ let requiresMainnetBuild =
3941
, DevnetLegacy = True
4042
, MainnetLegacy = True
4143
, PreMesa1 = False
44+
, Mesa = False
4245
}
4346
network
4447

buildkite/src/Constants/Profiles.dhall

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ let fromNetwork =
4343
, DevnetLegacy = Profile.Devnet
4444
, MainnetLegacy = Profile.Mainnet
4545
, PreMesa1 = Profile.Devnet
46+
, Mesa = Profile.Devnet
4647
}
4748
network
4849

0 commit comments

Comments
 (0)