Skip to content

Commit

Permalink
wip [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
biojppm committed Jan 16, 2025
1 parent fc1f61c commit b75e37c
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
export SRC_VERSION=$SRC_VERSION
EOF
- name: Save vars.sh
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: vars.sh
path: ./vars.sh
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:
mv -vf build/$bl/bm/bm-results/* $dst/.
done
- name: upload benchmark result artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ryml-benchmark_results
path: ryml-benchmark_results/
2 changes: 1 addition & 1 deletion .github/workflows/benchmarks.ys
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
mv -vf build/$bl/bm/bm-results/* $dst/.
done
- name: upload benchmark result artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ryml-benchmark_results
path: ryml-benchmark_results/
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
- name: static64-run
run: source .github/setenv.sh && c4_build_target static64 ryml-coverage
- name: static64-coverage-artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage-static64
path: |
Expand All @@ -91,7 +91,7 @@ jobs:
- name: static32-run
run: source .github/setenv.sh && c4_build_target static32 ryml-coverage
- name: static32-coverage-artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage-static32-cxx${{matrix.std}}
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/coverage.ys
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: static64-run
run: source .github/setenv.sh && c4_build_target static64 ryml-coverage
- name: static64-coverage-artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage-static64
path: |
Expand All @@ -61,7 +61,7 @@ jobs:
- name: static32-run
run: source .github/setenv.sh && c4_build_target static32 ryml-coverage
- name: static32-coverage-artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage-static32-cxx${{matrix.std}}
path: |
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
export SRC_VERSION=$SRC_VERSION
EOF
- name: Save vars.sh
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: vars.sh
path: ./vars.sh
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
python --version
python tools/amalgamate.py assets/$id.hpp
- name: Save source artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: assets
path: assets
Expand Down Expand Up @@ -239,7 +239,7 @@ jobs:
[ ! -f $asset_src ] && exit 1
cp -fav $asset_src $asset_dst
- name: Save artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: assets
path: assets
Expand Down Expand Up @@ -270,7 +270,7 @@ jobs:
sdist=`echo $sdist_orig | sed 's:\.zip:-python_src.zip:'`
mv -fv $sdist_orig $sdist
- name: Save artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: dist
path: dist
Expand Down Expand Up @@ -382,7 +382,7 @@ jobs:
- name: rename wheelhouse -> dist
run: mv -fv wheelhouse dist; ls -lFhp dist/
- name: Save artifacts for publishing to PyPI
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: dist
path: dist
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.ys
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Create source packages
run:: bash('release-create-source-packages')
- name: Save source artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with: {name: assets, path: assets}

#----------------------------------------------------------------------------
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
- name: shared64-normalize
run:: bash('release-shared-normalize')
- name: Save artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with: {name: assets, path: assets}

#----------------------------------------------------------------------------
Expand All @@ -131,7 +131,7 @@ jobs:
- name: normalize src package names
run:: bash('release-normalize')
- name: Save artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with: {name: dist, path: dist}

python_wheels:
Expand Down Expand Up @@ -254,7 +254,7 @@ jobs:
mv -fv wheelhouse dist;
ls -lFhp dist/
- name: Save artifacts for publishing to PyPI
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with: {name: dist, path: dist}
# run the tests
- name: install python ${{matrix.config.pythonv}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ys/common.ys
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ version-discover =::
export SRC_VERSION=$SRC_VERSION
EOF
- name: Save vars.sh
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with: {name: vars.sh, path: ./vars.sh}
- name: Show vars.sh
run: cat vars.sh
Expand Down

0 comments on commit b75e37c

Please sign in to comment.