Skip to content

Commit

Permalink
- .github: actions/upload-artifact@v4 suddenly stopped working (see L…
Browse files Browse the repository at this point in the history
…inus on breaking user space)
  • Loading branch information
nivanenko committed Sep 19, 2024
1 parent f08306e commit c3fcf0f
Showing 1 changed file with 8 additions and 12 deletions.
20 changes: 8 additions & 12 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: benchmark-data-gcc
include-hidden-files: true
path: |
test/.time/*.data
test/.space/*.data
Expand Down Expand Up @@ -238,6 +239,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: benchmark-data-clang
include-hidden-files: true
path: |
test/.time/*.data
test/.space/*.data
Expand Down Expand Up @@ -287,9 +289,7 @@ jobs:
b2 -j3 runtime-link=shared address-model=64 variant=release
- name: Time setup
shell: bash
run: |
mkdir test/.time
echo > test/.root
run: mkdir test/.time
- name: Time JSON (default)
shell: bash
env:
Expand Down Expand Up @@ -338,9 +338,8 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: benchmark-data-msvc
path: |
test/.root
test/.time/*.data
include-hidden-files: true
path: test/.time/*.data

# xcode ######################################################################

Expand Down Expand Up @@ -380,9 +379,7 @@ jobs:
./bootstrap.sh
./b2
- name: Time setup
run: |
mkdir test/.time
echo > test/.root
run: mkdir test/.time
- name: Time JSON (default)
env:
CXXFLAGS: -DCXON_TIME_ONLY -DCXON_TIME_BOOST_JSON -DCXON_TIME_RAPIDJSON -DRAPIDJSON_NEON -DCXON_TIME_NLOHMANN
Expand Down Expand Up @@ -437,9 +434,8 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: benchmark-data-xcode
path: |
test/.root
test/.time/*.data
include-hidden-files: true
path: test/.time/*.data

# commit #####################################################################

Expand Down

0 comments on commit c3fcf0f

Please sign in to comment.