Skip to content

Commit

Permalink
try other download artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
pbo-linaro committed Oct 17, 2024
1 parent 770f319 commit b6f821a
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
run: ./run.sh amd64 true
- name: build clang
run: ./run.sh amd64 ./build.sh clang
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v3
with:
name: build-clang
path: build_amd64/
Expand All @@ -43,7 +43,7 @@ jobs:
run: ./run.sh amd64 true
- name: build opt
run: ./run.sh amd64 ./build.sh debug
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v3
with:
name: build-debug
path: build_amd64/
Expand All @@ -57,7 +57,7 @@ jobs:
run: ./run.sh amd64 true
- name: build opt
run: ./run.sh amd64 ./build.sh opt
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v3
with:
name: build
path: build_amd64/
Expand All @@ -70,9 +70,10 @@ jobs:
uses: actions/checkout@v4
- name: build_container
run: ./run.sh amd64 true
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v3
with:
name: build-debug
path: build_amd64/
- name: check-tcg
run: ./run.sh amd64 make -C build check-tcg

Expand All @@ -84,9 +85,10 @@ jobs:
uses: actions/checkout@v4
- name: build_container
run: ./run.sh amd64 true
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v3
with:
name: build
path: build_amd64/
- name: check-functional
run: ./run.sh amd64 make -C build check-functional

Expand All @@ -98,9 +100,10 @@ jobs:
uses: actions/checkout@v4
- name: build_container
run: ./run.sh amd64 true
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v3
with:
name: build
path: build_amd64/
- name: check-avocado
run: ./run.sh amd64 make -C build check-avocado

Expand All @@ -112,8 +115,9 @@ jobs:
uses: actions/checkout@v4
- name: build_container
run: ./run.sh amd64 true
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v3
with:
name: build
path: build_amd64/
- name: check
run: ./run.sh amd64 make -C build check

0 comments on commit b6f821a

Please sign in to comment.