Skip to content

Commit a5fe48a

Browse files
committed
.github: remove tool-chain input usage
Removes `tool-chain` input from any usage of the `build-platform` action as it was removed
1 parent efe1fb2 commit a5fe48a

2 files changed

Lines changed: 2 additions & 8 deletions

File tree

.github/workflows/nightly-adv-logger.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ jobs:
3434
timeout-minutes: 30
3535

3636
env:
37-
TOOL_CHAIN: ${{ needs.vars.outputs.linux-toolchain }}
3837
STARTUP_NSH_PATH: './STARTUP.NSH'
3938
LOG_FILE: 'ADV_LOGS.TXT'
4039

@@ -92,7 +91,6 @@ jobs:
9291
platform-config: ${{ matrix.config }}
9392
platform-name: ${{ matrix.platform }}
9493
target: ${{ matrix.target }}
95-
tool-chain: ${{ env.TOOL_CHAIN }}
9694
stuart-args: 'QEMU_HEADLESS=TRUE STARTUP_NSH="${{ env.STARTUP_NSH_PATH }}" SHUTDOWN_AFTER_RUN=TRUE FILE_REGEX=*AdvancedLogDumper.efi'
9795

9896
- name: Run
@@ -102,7 +100,6 @@ jobs:
102100
platform-config: ${{ matrix.config }}
103101
platform-name: ${{ matrix.platform }}
104102
target: ${{ matrix.target }}
105-
tool-chain: ${{ env.TOOL_CHAIN }}
106103
stuart-args: 'QEMU_HEADLESS=TRUE STARTUP_NSH="${{ env.STARTUP_NSH_PATH }}" SHUTDOWN_AFTER_RUN=TRUE FILE_REGEX=*AdvancedLogDumper.efi'
107104

108105
# Extracts and validates the log dump from AdvancedLogDumper dumps logs from PEI and DXE
@@ -185,5 +182,5 @@ jobs:
185182
if: always()
186183
uses: actions/upload-artifact@v7
187184
with:
188-
name: build-logs-${{ matrix.platform }}-${{ matrix.target }}-${{ env.TOOL_CHAIN }}
185+
name: build-logs-${{ matrix.platform }}-${{ matrix.target }}
189186
path: ${{ steps.build-platform.outputs.log-path }}

.github/workflows/nightly-os-boot.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ jobs:
5858

5959
env:
6060
OS_BOOT_ARTIFACTS_PATH: ./os-boot-artifacts
61-
TOOL_CHAIN: ${{ needs.vars.outputs.linux-toolchain }}
6261

6362
strategy:
6463
fail-fast: false
@@ -208,7 +207,6 @@ jobs:
208207
platform-config: ${{ matrix.config }}
209208
platform-name: ${{ matrix.platform }}
210209
target: ${{ matrix.target }}
211-
tool-chain: ${{ env.TOOL_CHAIN }}
212210
stuart-args: 'QEMU_HEADLESS=TRUE ${{ matrix.extra-args }} OS_BOOT_DEVICE=${{ matrix.os-boot-device}}'
213211

214212
- name: Run
@@ -218,13 +216,12 @@ jobs:
218216
platform-config: ${{ matrix.config }}
219217
platform-name: ${{ matrix.platform }}
220218
target: ${{ matrix.target }}
221-
tool-chain: ${{ env.TOOL_CHAIN }}
222219
stuart-args: 'QEMU_HEADLESS=TRUE ${{ matrix.extra-args }} OS_BOOT_DEVICE=${{ matrix.os-boot-device}}'
223220

224221
- name: Publish Logs
225222
if: always()
226223
uses: actions/upload-artifact@v7
227224
with:
228225
# Specify architecture if it is not empty
229-
name: build-logs-${{ matrix.os-boot-device }}-${{ matrix.platform }}-${{ matrix.target }}-${{ env.TOOL_CHAIN }}-${{ contains(matrix.os-artifact, 'windows') && 'windows' || 'ubuntu' }}
226+
name: build-logs-${{ matrix.os-boot-device }}-${{ matrix.platform }}-${{ matrix.target }}-${{ contains(matrix.os-artifact, 'windows') && 'windows' || 'ubuntu' }}
230227
path: ${{ steps.build-platform.outputs.log-path }}

0 commit comments

Comments
 (0)