Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 1 addition & 4 deletions .github/workflows/nightly-adv-logger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ jobs:
timeout-minutes: 30

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

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

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

# Extracts and validates the log dump from AdvancedLogDumper dumps logs from PEI and DXE
Expand Down Expand Up @@ -185,5 +182,5 @@ jobs:
if: always()
uses: actions/upload-artifact@v7
with:
name: build-logs-${{ matrix.platform }}-${{ matrix.target }}-${{ env.TOOL_CHAIN }}
name: build-logs-${{ matrix.platform }}-${{ matrix.target }}
path: ${{ steps.build-platform.outputs.log-path }}
5 changes: 1 addition & 4 deletions .github/workflows/nightly-os-boot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ jobs:

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

strategy:
fail-fast: false
Expand Down Expand Up @@ -208,7 +207,6 @@ jobs:
platform-config: ${{ matrix.config }}
platform-name: ${{ matrix.platform }}
target: ${{ matrix.target }}
tool-chain: ${{ env.TOOL_CHAIN }}
stuart-args: 'QEMU_HEADLESS=TRUE ${{ matrix.extra-args }} OS_BOOT_DEVICE=${{ matrix.os-boot-device}}'

- name: Run
Expand All @@ -218,13 +216,12 @@ jobs:
platform-config: ${{ matrix.config }}
platform-name: ${{ matrix.platform }}
target: ${{ matrix.target }}
tool-chain: ${{ env.TOOL_CHAIN }}
stuart-args: 'QEMU_HEADLESS=TRUE ${{ matrix.extra-args }} OS_BOOT_DEVICE=${{ matrix.os-boot-device}}'

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