Skip to content

Commit

Permalink
chore(megalinter): cosmetic fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
AtomicFS committed Sep 18, 2023
1 parent 8386001 commit 521ba1c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 21 deletions.
1 change: 1 addition & 0 deletions .cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
"distclean",
"dockerfile",
"dockerfiles",
"dooper",
"dotconfig",
"edkii",
"exitcode",
Expand Down
32 changes: 11 additions & 21 deletions .github/workflows/example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
coreboot-version:
[
'4.19',
'4.20.1',
'4.21'
]
coreboot-version: ['4.19', '4.20.1', '4.21']
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -49,10 +44,10 @@ jobs:
#uses: 9elements/firmware-action
with:
target: coreboot
sdk_version: "coreboot_${{ matrix.coreboot-version }}:main"
sdk_version: 'coreboot_${{ matrix.coreboot-version }}:main'
#architecture: x86 # default
repo_path: my_super_dooper_awesome_coreboot
defconfig_path: "seabios_defconfig"
defconfig_path: 'seabios_defconfig'
#output: "output" # default

# Example of building Linux kernel
Expand Down Expand Up @@ -88,22 +83,18 @@ jobs:
#uses: 9elements/firmware-action
with:
target: linux
sdk_version: "linux_${{ matrix.linux-version }}:main"
sdk_version: 'linux_${{ matrix.linux-version }}:main'
#architecture: x86 # default
repo_path: "linux-${{ matrix.linux-version }}"
defconfig_path: "ci_defconfig"
repo_path: 'linux-${{ matrix.linux-version }}'
defconfig_path: 'ci_defconfig'
#output: "output" # default

# Example of building EDK2
build-edk2:
runs-on: ubuntu-latest
strategy:
matrix:
edk2-version:
[
'edk2-stable202208',
'edk2-stable202211'
]
edk2-version: ['edk2-stable202208', 'edk2-stable202211']
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -120,11 +111,10 @@ jobs:
#uses: 9elements/firmware-action
with:
target: edk2
sdk_version: "${{ matrix.edk2-version }}:main"
sdk_version: '${{ matrix.edk2-version }}:main'
architecture: X64
repo_path: "Edk2"
defconfig_path: "edk2_config.cfg"
repo_path: 'Edk2'
defconfig_path: 'edk2_config.cfg'
#output: "output" # default
edk2__platform: "UefiPayloadPkg/UefiPayloadPkg.dsc"
edk2__platform: 'UefiPayloadPkg/UefiPayloadPkg.dsc'
#edk2__release_type: DEBUG # default

0 comments on commit 521ba1c

Please sign in to comment.