Skip to content

Commit b1ca872

Browse files
committed
remove environment
1 parent de766da commit b1ca872

File tree

5 files changed

+0
-22
lines changed

5 files changed

+0
-22
lines changed

.github/workflows/Benchmarks.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ name: Benchmarks
55
on:
66
workflow_call: # This is called from CreateRelease.yml
77
inputs:
8-
environment:
9-
required: false
10-
type: string
118

129
permissions:
1310
id-token: write
@@ -18,7 +15,6 @@ jobs:
1815
# its execution. this dependency should be expressed in the dependent
1916
# workflow
2017
benchmark:
21-
environment: ${{ inputs.environment }}
2218
strategy:
2319
fail-fast: true
2420
matrix:

.github/workflows/CargoPublish.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ permissions:
1212

1313
jobs:
1414
publish-hyperlight-packages:
15-
environment: release
1615
runs-on: [self-hosted, Linux, X64, "1ES.Pool=hld-kvm-amd"]
1716

1817
# We should only publish from dev if minver contains `-preview`

.github/workflows/CreateRelease.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ jobs:
1919
# see https://github.com/orgs/community/discussions/26286#discussioncomment-3251208 for why we need to check the ref
2020
if: ${{ contains(github.ref, 'refs/heads/release/') }} || ${{ github.ref=='refs/heads/dev' }}
2121
runs-on: [self-hosted, Linux, X64, "1ES.Pool=hld-kvm-amd"]
22-
environment: release
2322

2423
steps:
2524
- uses: actions/checkout@v4
@@ -49,7 +48,6 @@ jobs:
4948
# see https://github.com/orgs/community/discussions/26286#discussioncomment-3251208 for why we need to check the ref
5049
if: ${{ contains(github.ref, 'refs/heads/release/') }} || ${{ github.ref=='refs/heads/dev' }}
5150
runs-on: windows-2022
52-
environment: release
5351

5452
steps:
5553
- uses: actions/checkout@v4
@@ -69,22 +67,17 @@ jobs:
6967
build-guest-binaries:
7068
uses: ./.github/workflows/dep_build_guest_binaries.yml
7169
secrets: inherit
72-
with:
73-
environment: release
7470

7571
fuzzing:
7672
uses: ./.github/workflows/dep_fuzzing.yml
7773
with:
7874
max_total_time: 3600 # 1 hour in seconds
79-
environment: release
8075
secrets: inherit
8176

8277
benchmarks:
8378
needs: [build-guest-binaries]
8479
uses: ./.github/workflows/Benchmarks.yml
8580
secrets: inherit
86-
with:
87-
environment: release
8881
permissions:
8982
id-token: write
9083
contents: read
@@ -98,7 +91,6 @@ jobs:
9891
contents: read
9992

10093
publish:
101-
environment: release
10294
# see https://github.com/orgs/community/discussions/26286#discussioncomment-3251208 for why we need to check the ref
10395
if: ${{ contains(github.ref, 'refs/heads/release/') }} || ${{ github.ref=='refs/heads/dev' }}
10496
runs-on: windows-2022

.github/workflows/dep_build_guest_binaries.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ name: Build Guest Binaries
44

55
on:
66
workflow_call:
7-
inputs:
8-
environment:
9-
required: false
10-
type: string
117

128
env:
139
CARGO_TERM_COLOR: always
@@ -19,7 +15,6 @@ permissions:
1915
jobs:
2016
# this job has no dependencies
2117
build-guest-binaries:
22-
environment: ${{ inputs.environment }}
2318
runs-on: ${{ matrix.os }}
2419
strategy:
2520
fail-fast: true

.github/workflows/dep_fuzzing.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,13 @@ on:
77
description: Maximum total time for the fuzz run in seconds
88
required: true
99
type: number
10-
environment:
11-
required: false
12-
type: string
1310

1411
permissions:
1512
id-token: write
1613
contents: read
1714

1815
jobs:
1916
fuzz:
20-
environment: ${{ inputs.environment }}
2117
runs-on: [ self-hosted, Linux, X64, "1ES.Pool=hld-kvm-amd" ]
2218
steps:
2319
- name: Checkout code

0 commit comments

Comments
 (0)