diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 22 | ||||
| -rw-r--r-- | .github/workflows/release.yml | 2 |
2 files changed, 19 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d4c102bb04..1393b987d9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -269,6 +269,7 @@ jobs: env: DEPS_BUILD_DIR: ${{ format('{0}/nvim-deps', github.workspace) }} DEPS_PREFIX: ${{ format('{0}/nvim-deps/usr', github.workspace) }} + CMAKE_BUILD_TYPE: "RelWithDebInfo" name: windows (MSVC_64) steps: - uses: actions/checkout@v3 @@ -278,7 +279,20 @@ jobs: path: ${{ env.DEPS_BUILD_DIR }} key: ${{ hashFiles('cmake.deps\**') }} - - name: Run CI - run: powershell ci\build.ps1 - env: - CONFIGURATION: MSVC_64 + - name: Build deps + run: .\ci\build.ps1 -BuildDeps + + - name: Build nvim + run: .\ci\build.ps1 -Build + + - name: Install test deps + continue-on-error: false + run: .\ci\build.ps1 -EnsureTestDeps + + - if: "!cancelled()" + name: Run tests + run: .\ci\build.ps1 -Test + + - if: "!cancelled()" + name: Run old tests + run: .\ci\build.ps1 -TestOld diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b58488ef93..11cc1ab03d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -138,7 +138,7 @@ jobs: - uses: actions/checkout@v3 with: fetch-depth: 0 - - run: powershell ci\build.ps1 -NoTests + - run: powershell ci\build.ps1 -Package - uses: actions/upload-artifact@v3 with: name: ${{ matrix.archive }} |