Skip to content

Commit

Permalink
Fix CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian LALU committed Jan 23, 2025
1 parent 274a992 commit 5573551
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
# Invoke-WebRequest -Uri https://uploader.codecov.io/latest/windows/codecov.exe -Outfile .\target\codecov.exe
# .\target\codecov.exe -f target\test\Debug\coverage.msvc.cobertura -t ${{secrets.CODECOV_TOKEN}}
# - name: Upload artifacts
# uses: actions/upload-artifact@v3.1.1
# uses: actions/upload-artifact@v4
# with:
# name: coverage
# path: |
Expand All @@ -52,7 +52,7 @@ jobs:
Invoke-WebRequest -Uri https://uploader.codecov.io/latest/windows/codecov.exe -Outfile .\target\codecov.exe
.\target\codecov.exe -f target\test\coverage.windows.clang.lcov.info -t ${{secrets.CODECOV_TOKEN}}
- name: Upload artifacts
uses: actions/upload-artifact@v3.1.1
uses: actions/upload-artifact@v4
with:
name: coverage
path: |
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
chmod +x codecov
./codecov -f target/test/coverage.linux.clang.lcov.info -t ${{secrets.CODECOV_TOKEN}}
- name: Upload artifacts
uses: actions/upload-artifact@v3.1.1
uses: actions/upload-artifact@v4
with:
name: coverage
path: |
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
chmod +x codecov
./codecov -f target/test/coverage.linux.gcc.lcov.info -t ${{secrets.CODECOV_TOKEN}}
- name: Upload artifacts
uses: actions/upload-artifact@v3.1.1
uses: actions/upload-artifact@v4
with:
name: coverage
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu_clang14_x86-64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
cp -R target/src/*.a release -i
cp -R interface/core release/core -i
- name: Upload artifacts
uses: actions/upload-artifact@v3.1.1
uses: actions/upload-artifact@v4
with:
name: Ubuntu_clang_14_x86_64
path: release/**
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu_gcc12_x86-64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
cp -R target/src/*.a release -i
cp -R interface/core release/core -i
- name: Upload artifacts
uses: actions/upload-artifact@v3.1.1
uses: actions/upload-artifact@v4
with:
name: Ubuntu_gcc_12_x86_64
path: release/**
2 changes: 1 addition & 1 deletion .github/workflows/windows_clang_cl_2022_x86-64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
xcopy target\src\Release release\ /s /y
xcopy interface\core release\core\ /s /y
- name: Upload artifacts
uses: actions/upload-artifact@v3.1.1
uses: actions/upload-artifact@v4
with:
name: windows_clang_cl_2022_x64
path: release\**
2 changes: 1 addition & 1 deletion .github/workflows/windows_mingw_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
cp -R target/src/*.a release
cp -R interface/core release/core
- name: Upload artifacts
uses: actions/upload-artifact@v3.1.1
uses: actions/upload-artifact@v4
with:
name: windows_mingw_64
path: release\**
2 changes: 1 addition & 1 deletion .github/workflows/windows_msvc_2022_x86-64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
xcopy target\src\Release release\ /s /y
xcopy interface\core release\core\ /s /y
- name: Upload artifacts
uses: actions/upload-artifact@v3.1.1
uses: actions/upload-artifact@v4
with:
name: windows_msvc_2022_x64
path: release\**
2 changes: 1 addition & 1 deletion .github/workflows/windows_wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
xcopy target\src\libcore.a release\ /s /y
xcopy interface\core release\core\ /s /y
- name: Upload artifacts
uses: actions/upload-artifact@v3.1.1
uses: actions/upload-artifact@v4
with:
name: windows_webassembly
path: release\**

0 comments on commit 5573551

Please sign in to comment.