Merge branch 'main' into microbuild

This commit is contained in:
Andrew Arnott 2024-07-15 15:58:42 -06:00
Родитель 21b5de7d86 f93bdce9c9
Коммит 92b244f8f2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: F33A420C60ED9C6F
1 изменённых файлов: 10 добавлений и 10 удалений

20
.github/workflows/build.yml поставляемый
Просмотреть файл

@ -27,7 +27,7 @@ jobs:
- windows-latest - windows-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
with: with:
fetch-depth: 0 # avoid shallow clone so nbgv can do its work. fetch-depth: 0 # avoid shallow clone so nbgv can do its work.
- name: ⚙ Install prerequisites - name: ⚙ Install prerequisites
@ -57,53 +57,53 @@ jobs:
if: always() if: always()
- name: 📢 Upload project.assets.json files - name: 📢 Upload project.assets.json files
if: always() if: always()
uses: actions/upload-artifact@v1 uses: actions/upload-artifact@v4
with: with:
name: projectAssetsJson-${{ runner.os }} name: projectAssetsJson-${{ runner.os }}
path: ${{ runner.temp }}/_artifacts/projectAssetsJson path: ${{ runner.temp }}/_artifacts/projectAssetsJson
continue-on-error: true continue-on-error: true
- name: 📢 Upload variables - name: 📢 Upload variables
uses: actions/upload-artifact@v1 uses: actions/upload-artifact@v4
with: with:
name: variables-${{ runner.os }} name: variables-${{ runner.os }}
path: ${{ runner.temp }}/_artifacts/Variables path: ${{ runner.temp }}/_artifacts/Variables
continue-on-error: true continue-on-error: true
- name: 📢 Upload build_logs - name: 📢 Upload build_logs
if: always() if: always()
uses: actions/upload-artifact@v1 uses: actions/upload-artifact@v4
with: with:
name: build_logs-${{ runner.os }} name: build_logs-${{ runner.os }}
path: ${{ runner.temp }}/_artifacts/build_logs path: ${{ runner.temp }}/_artifacts/build_logs
continue-on-error: true continue-on-error: true
- name: 📢 Upload test_logs - name: 📢 Upload test_logs
if: always() if: always()
uses: actions/upload-artifact@v1 uses: actions/upload-artifact@v4
with: with:
name: test_logs-${{ runner.os }} name: test_logs-${{ runner.os }}
path: ${{ runner.temp }}/_artifacts/test_logs path: ${{ runner.temp }}/_artifacts/test_logs
continue-on-error: true continue-on-error: true
- name: 📢 Upload testResults - name: 📢 Upload testResults
if: always() if: always()
uses: actions/upload-artifact@v1 uses: actions/upload-artifact@v4
with: with:
name: testResults-${{ runner.os }} name: testResults-${{ runner.os }}
path: ${{ runner.temp }}/_artifacts/testResults path: ${{ runner.temp }}/_artifacts/testResults
continue-on-error: true continue-on-error: true
- name: 📢 Upload coverageResults - name: 📢 Upload coverageResults
if: always() if: always()
uses: actions/upload-artifact@v1 uses: actions/upload-artifact@v4
with: with:
name: coverageResults-${{ runner.os }} name: coverageResults-${{ runner.os }}
path: ${{ runner.temp }}/_artifacts/coverageResults path: ${{ runner.temp }}/_artifacts/coverageResults
continue-on-error: true continue-on-error: true
- name: 📢 Upload symbols - name: 📢 Upload symbols
uses: actions/upload-artifact@v1 uses: actions/upload-artifact@v4
with: with:
name: symbols-${{ runner.os }} name: symbols-${{ runner.os }}
path: ${{ runner.temp }}/_artifacts/symbols path: ${{ runner.temp }}/_artifacts/symbols
continue-on-error: true continue-on-error: true
- name: 📢 Upload deployables - name: 📢 Upload deployables
uses: actions/upload-artifact@v1 uses: actions/upload-artifact@v4
with: with:
name: deployables-${{ runner.os }} name: deployables-${{ runner.os }}
path: ${{ runner.temp }}/_artifacts/deployables path: ${{ runner.temp }}/_artifacts/deployables
@ -113,4 +113,4 @@ jobs:
shell: pwsh shell: pwsh
timeout-minutes: 3 timeout-minutes: 3
continue-on-error: true continue-on-error: true
if: always() if: env.codecov_token != ''