Update Github Actions workflows
This change removes some unneeded compilation flags for the kernel builds. In addition, we revert back to compilation level O2 based on the discussion in the LKML: https://lore.kernel.org/lkml/20200507224530.2993316-1-Jason@zx2c4.com/
This commit is contained in:
parent
a263c85c84
commit
1ab2af01d7
2 changed files with 3 additions and 4 deletions
1
.github/workflows/master.yml
vendored
1
.github/workflows/master.yml
vendored
|
@ -14,7 +14,6 @@ jobs:
|
|||
include:
|
||||
- build_type: 'generic'
|
||||
build_cc: gcc-10
|
||||
build_cflags: '-O3 -Wno-error=maybe-uninitialized'
|
||||
if: "!contains(github.event.head_commit.message, 'skip ci')"
|
||||
steps:
|
||||
- name: Checkout Sources
|
||||
|
|
6
.github/workflows/release.yml
vendored
6
.github/workflows/release.yml
vendored
|
@ -12,13 +12,13 @@ jobs:
|
|||
include:
|
||||
- build_type: 'generic'
|
||||
build_cc: gcc-10
|
||||
build_cflags: '-O3 -Wno-error=maybe-uninitialized'
|
||||
build_cflags: ''
|
||||
- build_type: zen2
|
||||
build_cc: gcc-10
|
||||
build_cflags: '-O3 -march=znver2 -Wno-error=maybe-uninitialized'
|
||||
build_cflags: '-march=znver2'
|
||||
- build_type: cascadelake
|
||||
build_cc: gcc-10
|
||||
build_cflags: '-O3 -march=cascadelake -Wno-error=maybe-uninitialized'
|
||||
build_cflags: '-march=cascadelake'
|
||||
steps:
|
||||
- name: Checkout Sources
|
||||
uses: actions/checkout@v2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue