Skip to content

Commit

Permalink
[GITHUB ACTIONS] update to v3 and required debhelper package
Browse files Browse the repository at this point in the history
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
  • Loading branch information
plbossart committed May 22, 2023
1 parent 620d84e commit 4b61be9
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions .github/workflows/buildtest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
name: "GCC build X86_64"
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Fetch linux
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: 'thesofproject/linux'
path: 'linux'
Expand All @@ -28,6 +28,11 @@ jobs:
sudo apt update
sudo apt install -y libelf-dev
- name: Install debhelper
run: |
sudo apt update
sudo apt install -y debhelper
- name: build start
run: |
export ARCH=x86_64 KCFLAGS="-Wall -Werror"
Expand All @@ -41,10 +46,10 @@ jobs:
name: "GCC build i386"
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Fetch linux
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: 'thesofproject/linux'
path: 'linux'
Expand All @@ -63,10 +68,10 @@ jobs:
name: "GCC build arm64"
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Fetch linux
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: 'thesofproject/linux'
path: 'linux'
Expand All @@ -90,10 +95,10 @@ jobs:
name: "Clang build x86_64"
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Fetch linux
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: 'thesofproject/linux'
path: 'linux'
Expand Down

0 comments on commit 4b61be9

Please sign in to comment.