Skip to content

Commit

Permalink
archive
Browse files Browse the repository at this point in the history
  • Loading branch information
pbo-linaro committed Oct 17, 2024
1 parent 080c38c commit e034fe5
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,11 @@ jobs:
run: ./run.sh amd64 true
- name: build clang
run: ./run.sh amd64 ./build.sh clang
- run: pushd /home/runner/.ccache/ccache && tar cvf /home/runner/cache.tar ./ && popd
- uses: actions/upload-artifact@v3
with:
name: build-ccache-clang
path: /home/runner/.cache/ccache/
path: /home/runner/cache.tar

build-debug:
runs-on: ubuntu-latest
Expand All @@ -43,10 +44,11 @@ jobs:
run: ./run.sh amd64 true
- name: build debug
run: ./run.sh amd64 ./build.sh debug
- run: pushd /home/runner/.ccache/ccache && tar cvf /home/runner/cache.tar ./ && popd
- uses: actions/upload-artifact@v3
with:
name: build-ccache-debug
path: /home/runner/.cache/ccache/
path: /home/runner/cache.tar

build:
runs-on: ubuntu-latest
Expand All @@ -57,10 +59,11 @@ jobs:
run: ./run.sh amd64 true
- name: build opt
run: ./run.sh amd64 ./build.sh opt
- run: pushd /home/runner/.ccache/ccache && tar cvf /home/runner/cache.tar ./ && popd
- uses: actions/upload-artifact@v3
with:
name: build-ccache
path: /home/runner/.cache/ccache/
path: /home/runner/cache.tar

check-tcg:
runs-on: ubuntu-latest
Expand All @@ -73,7 +76,9 @@ jobs:
- uses: actions/download-artifact@v3
with:
name: build-ccache-debug
path: /home/runner/.cache/ccache/
path: /home/runner/cache.tar
- run: pushd /home/runner/.ccache/ccache && tar xvf /home/runner/cache.tar && popd
- uses: actions/upload-artifact@v3
- name: build debug
run: ./run.sh amd64 ./build.sh debug
- name: check-tcg
Expand All @@ -90,7 +95,8 @@ jobs:
- uses: actions/download-artifact@v3
with:
name: build-ccache
path: /home/runner/.cache/ccache/
path: /home/runner/cache.tar
- run: pushd /home/runner/.ccache/ccache && tar xvf /home/runner/cache.tar && popd
- name: build opt
run: ./run.sh amd64 ./build.sh opt
- name: check-functional
Expand All @@ -107,7 +113,8 @@ jobs:
- uses: actions/download-artifact@v3
with:
name: build-ccache
path: /home/runner/.cache/ccache/
path: /home/runner/cache.tar
- run: pushd /home/runner/.ccache/ccache && tar xvf /home/runner/cache.tar && popd
- name: build opt
run: ./run.sh amd64 ./build.sh opt
- name: check-avocado
Expand All @@ -124,7 +131,8 @@ jobs:
- uses: actions/download-artifact@v3
with:
name: build-ccache
path: /home/runner/.cache/ccache/
path: /home/runner/cache.tar
- run: pushd /home/runner/.ccache/ccache && tar xvf /home/runner/cache.tar && popd
- name: build opt
run: ./run.sh amd64 ./build.sh opt
- name: check
Expand Down

0 comments on commit e034fe5

Please sign in to comment.