Skip to content

Commit

Permalink
- .github: actions/upload-artifact@v4 suddenly stopped working (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
nivanenko committed Sep 19, 2024
1 parent f4294ed commit aaa362a
Showing 1 changed file with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,18 +120,14 @@ jobs:
cd test
echo "# `date -u --iso-8601=seconds` / g++-$COMPILER_VERSION $CXXFLAGS (`uname -sm`)" > .space/g++.head.default.json.data
./benchmark-space.sh | tee -a .space/g++.head.default.json.data
- name: Upload Artifacts (Time)
uses: actions/upload-artifact@v4
with:
name: benchmark-data-time-gcc
include-hidden-files: true
path: test/.time/*.data
- name: Upload Artifacts (Space)
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: benchmark-data-space-gcc
name: benchmark-data-gcc
include-hidden-files: true
path: test/.space/*.data
path: |
test/.time/*.data
test/.space/*.data
# clang ######################################################################

Expand Down Expand Up @@ -341,7 +337,7 @@ jobs:
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: benchmark-data-time-msvc
name: benchmark-data-msvc
include-hidden-files: true
path: test/.time/*.data

Expand Down Expand Up @@ -437,7 +433,7 @@ jobs:
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: benchmark-data-time-xcode
name: benchmark-data-xcode
include-hidden-files: true
path: test/.time/*.data

Expand Down

0 comments on commit aaa362a

Please sign in to comment.