diff options
author | Yuri Sizov <yuris@humnom.net> | 2023-08-01 20:38:07 +0200 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2023-08-01 20:41:45 +0200 |
commit | deb602578186a8918270cf05d75efd3e72bd9335 (patch) | |
tree | 48e44875fca318084c0aa2c05ecb7605ac270980 /.github/workflows/windows_builds.yml | |
parent | 2992ffd25523cb8b3e0ef1b873c40115b8940178 (diff) | |
download | redot-engine-deb602578186a8918270cf05d75efd3e72bd9335.tar.gz |
CI: Extract godot-cpp testing into its own job
This ensures that the godot-cpp job has plenty of resources
to run its build and avoid being affected by the main build.
Additionally:
- Extract test tasks into dedicated actions.
- Upload artifacts as early as possible.
- Ensure that we check master cache before random cache.
Diffstat (limited to '.github/workflows/windows_builds.yml')
-rw-r--r-- | .github/workflows/windows_builds.yml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/.github/workflows/windows_builds.yml b/.github/workflows/windows_builds.yml index 182ae2fc8c..ab62dca5cb 100644 --- a/.github/workflows/windows_builds.yml +++ b/.github/workflows/windows_builds.yml @@ -60,14 +60,6 @@ jobs: target: ${{ matrix.target }} tests: ${{ matrix.tests }} - # Execute unit tests for the editor - - name: Unit tests - if: ${{ matrix.tests }} - run: | - ${{ matrix.bin }} --version - ${{ matrix.bin }} --help - ${{ matrix.bin }} --test - - name: Prepare artifact run: | Remove-Item bin/* -Include *.exp,*.lib,*.pdb -Force @@ -76,3 +68,11 @@ jobs: uses: ./.github/actions/upload-artifact with: name: ${{ matrix.cache-name }} + + # Execute unit tests for the editor + - name: Unit tests + if: ${{ matrix.tests }} + run: | + ${{ matrix.bin }} --version + ${{ matrix.bin }} --help + ${{ matrix.bin }} --test |