Skip to content

Commit

Permalink
Merge branch 'update-submodule' into refactor-into-g-utils
Browse files Browse the repository at this point in the history
  • Loading branch information
Dekel Reches committed Sep 22, 2024
2 parents 614877b + f132d9c commit b1e5bd5
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/build-test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
cp output/gprofiler_x86_64 output/gprofiler # for backwards compatibility, we upload both with arch suffix and without
- name: Upload the executables as job artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: gprofiler_x86_64
path: output/
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
submodules: true

- name: Download the executable from previous job
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: gprofiler_x86_64
path: dist/
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
mv build/aarch64/gprofiler output/gprofiler_aarch64
- name: Upload the executables as job artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: gprofiler_aarch64
path: output/
Expand All @@ -155,13 +155,13 @@ jobs:
run: ./scripts/verify_tag.sh

- name: Download x86_64 executable from a previous job
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: gprofiler_x86_64
path: output/

- name: Download aarch64 executable from a previous job
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: gprofiler_aarch64
path: output/
Expand Down Expand Up @@ -189,7 +189,7 @@ jobs:
fetch-depth: 0

- name: Download executables from the previous job
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: gprofiler_x86_64
path: output/
Expand All @@ -205,7 +205,7 @@ jobs:
run: mkdir -p output && docker image save gprofiler_x86_64 > output/gprofiler_x86_64.img

- name: Upload the image artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: gprofiler_x86_64.img
path: output/
Expand Down Expand Up @@ -250,13 +250,13 @@ jobs:
submodules: true

- name: Download the executable from previous job
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: gprofiler_x86_64
path: output/

- name: Download the image from previous job
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: gprofiler_x86_64.img
path: output/
Expand Down Expand Up @@ -309,7 +309,7 @@ jobs:
uses: docker/setup-buildx-action@v1

- name: Download executables from the previous job
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: gprofiler_aarch64
path: output/
Expand Down Expand Up @@ -347,7 +347,7 @@ jobs:
# build-container-aarch64 has pushed the image to DockerHub, so we'll pull it later when creating
# the manifest.
- name: Download the x86_64 image from previous job
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: gprofiler_x86_64.img
path: output/
Expand Down

0 comments on commit b1e5bd5

Please sign in to comment.