Skip to content

Commit 4644b5f

Browse files
Merge pull request #980 from FrameworkComputer/lotus.update-folder
lotus/azalea: Fix gh actions build
2 parents 51f0c4e + 916dff8 commit 4644b5f

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-20.04
1111
steps:
1212
- name: Checkout code
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v4
1414
with:
1515
fetch-depth: 0
1616
- name: get checkpatch

.github/workflows/lotus-azalea-build.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
- azalea*
88
paths:
99
- 'zephyr/program/lotus/**'
10+
- '.github/workflows/**'
1011
#pull_request:
1112
# branches:
1213
# - lotus-zephyr
@@ -22,8 +23,8 @@ jobs:
2223
max-parallel: 1
2324
matrix:
2425
platform: [
25-
{name: lotus, folder: data },
26-
{name: azalea, folder: data },
26+
{name: lotus, folder: lotus },
27+
{name: azalea, folder: lotus },
2728
]
2829

2930

@@ -35,19 +36,19 @@ jobs:
3536
steps:
3637
# Need to use git
3738
#- name: Checkout EC code
38-
# uses: actions/checkout@v3
39+
# uses: actions/checkout@v4
3940
# with:
40-
# path: /data/ec_home/chromiumos/src/platform/ec
41+
# path: /lotus/ec_home/chromiumos/src/platform/ec
4142

4243
#- name: Checkout Zephyr code
4344
# uses: actions/checkout@v2
44-
# path: /data/ec_home/chromiumos/src/third_party/zephyr/main
45+
# path: /lotus/ec_home/chromiumos/src/third_party/zephyr/main
4546
# ref: lotus-zephyr
4647
# repository: ssh://git@github.com/FrameworkComputer/zephyr-ec
4748

4849
# Need to manually checkout
49-
# actions/checkout@v3 complains:
50-
# Error: Repository path '/data/ec_home/chromiumos/src/platform/ec' is not under '/data/ec_home/actions-runner/_work/ec/ec'
50+
# actions/checkout@v4 complains:
51+
# Error: Repository path '/lotus/ec_home/chromiumos/src/platform/ec' is not under '/data/ec_home/actions-runner/_work/ec/ec'
5152
# See: https://github.com/actions/checkout/issues/197
5253
- name: Manual checkout
5354
run: |
@@ -76,7 +77,7 @@ jobs:
7677
run: |
7778
echo "VERSIONINFO=$(date -u +'%Y-%m-%d-%H-%M-%S')_$GITHUB_SHA" >> $GITHUB_ENV
7879
79-
- uses: actions/upload-artifact@v3
80+
- uses: actions/upload-artifact@v4
8081
with:
8182
name: ${{ matrix.platform.name }}.${{ env.VERSIONINFO }}
8283
path: /${{ matrix.platform.folder }}/ec_home/chromiumos/src/platform/ec/build/zephyr/${{ matrix.platform.name }}/output

0 commit comments

Comments
 (0)