CI: update workflows
This commit is contained in:
parent
719ff89b2e
commit
73765abb0d
6 changed files with 12 additions and 12 deletions
4
.github/workflows/ubuntu-c.yml
vendored
4
.github/workflows/ubuntu-c.yml
vendored
|
@ -8,7 +8,7 @@ jobs:
|
|||
env:
|
||||
BUILD_TYPE: Release
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: recursive
|
||||
- name: Install packages
|
||||
|
@ -22,7 +22,7 @@ jobs:
|
|||
- name: Install
|
||||
run: cmake --install ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --prefix ${{github.workspace}}/install/usr/local
|
||||
- name: Upload
|
||||
uses: actions/upload-artifact@v2
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: Ubuntu
|
||||
path: |
|
||||
|
|
4
.github/workflows/ubuntu-cxx.yml
vendored
4
.github/workflows/ubuntu-cxx.yml
vendored
|
@ -8,7 +8,7 @@ jobs:
|
|||
env:
|
||||
BUILD_TYPE: Release
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: recursive
|
||||
- name: Install packages
|
||||
|
@ -22,7 +22,7 @@ jobs:
|
|||
- name: Install
|
||||
run: cmake --install ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --prefix ${{github.workspace}}/install/usr/local
|
||||
- name: Upload
|
||||
uses: actions/upload-artifact@v2
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: Ubuntu
|
||||
path: |
|
||||
|
|
4
.github/workflows/webassembly-c.yml
vendored
4
.github/workflows/webassembly-c.yml
vendored
|
@ -8,7 +8,7 @@ jobs:
|
|||
env:
|
||||
BUILD_TYPE: Release
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: recursive
|
||||
- name: Setup emsdk
|
||||
|
@ -24,7 +24,7 @@ jobs:
|
|||
- name: Build
|
||||
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
|
||||
- name: Upload
|
||||
uses: actions/upload-artifact@v2
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: WebAssembly
|
||||
path: |
|
||||
|
|
4
.github/workflows/webassembly-cxx.yml
vendored
4
.github/workflows/webassembly-cxx.yml
vendored
|
@ -8,7 +8,7 @@ jobs:
|
|||
env:
|
||||
BUILD_TYPE: Release
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: recursive
|
||||
- name: Setup emsdk
|
||||
|
@ -24,7 +24,7 @@ jobs:
|
|||
- name: Build
|
||||
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
|
||||
- name: Upload
|
||||
uses: actions/upload-artifact@v2
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: WebAssembly
|
||||
path: |
|
||||
|
|
4
.github/workflows/windows-c.yml
vendored
4
.github/workflows/windows-c.yml
vendored
|
@ -14,7 +14,7 @@ jobs:
|
|||
- amd64_x86
|
||||
- amd64_arm64
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: recursive
|
||||
- uses: ilammy/msvc-dev-cmd@v1
|
||||
|
@ -27,7 +27,7 @@ jobs:
|
|||
- name: Install
|
||||
run: cmake --install ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --prefix ${{github.workspace}}/install
|
||||
- name: Upload
|
||||
uses: actions/upload-artifact@v2
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: Windows MSVC ${{matrix.arch}}
|
||||
path: |
|
||||
|
|
4
.github/workflows/windows-cxx.yml
vendored
4
.github/workflows/windows-cxx.yml
vendored
|
@ -14,7 +14,7 @@ jobs:
|
|||
- amd64_x86
|
||||
- amd64_arm64
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: recursive
|
||||
- uses: ilammy/msvc-dev-cmd@v1
|
||||
|
@ -27,7 +27,7 @@ jobs:
|
|||
- name: Install
|
||||
run: cmake --install ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --prefix ${{github.workspace}}/install
|
||||
- name: Upload
|
||||
uses: actions/upload-artifact@v2
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: Windows MSVC ${{matrix.arch}}
|
||||
path: |
|
||||
|
|
Loading…
Reference in a new issue