File tree Expand file tree Collapse file tree 1 file changed +6
-16
lines changed Expand file tree Collapse file tree 1 file changed +6
-16
lines changed Original file line number Diff line number Diff line change @@ -91,29 +91,19 @@ jobs:
9191 windows-build :
9292 name : ' 🏁 Windows build'
9393 runs-on : windows-latest
94- strategy :
95- matrix :
96- include :
97- - PLATFORM : ' windows-x86_64'
98- PYTHON_ARCH : ' x64'
99- MSVC_ARCH : ' x64'
100- - PLATFORM : ' windows-x86'
101- PYTHON_ARCH : ' x86'
102- MSVC_ARCH : ' x86'
94+ env :
95+ PLATFORM : ' windows-x86_64'
10396 steps :
10497 - name : ' Checkout'
10598 uses : actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # pin@v3.3.0
10699 with :
107100 submodules : true
108101 - name : ' Set up MSVC'
109102 uses : egor-tensin/vs-shell@9a932a62d05192eae18ca370155cf877eecc2202 # pin@v2.1
110- with :
111- arch : ${{ matrix.MSVC_ARCH }}
112103 - name : ' Set up Python'
113104 uses : actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 # pin@v4.5.0
114105 with :
115106 python-version : ${{ env.PYTHON_VERSION }}
116- architecture : ${{ matrix.PYTHON_ARCH }}
117107 - name : ' Setup venv'
118108 shell : bash
119109 run : |
@@ -129,10 +119,10 @@ jobs:
129119 shell : bash
130120 run : |
131121 set -eux
132- python tests/run.py 0-gdscript --build-dir build/ --godot-binary "${{ matrix.PLATFORM }}:" -- --headless
133- python tests/run.py 1-gdextension --build-dir build/ --godot-binary "${{ matrix.PLATFORM }}:" -- --headless
134- python tests/run.py 2-pythonscript-init --build-dir build/ --godot-binary "${{ matrix.PLATFORM }}:" -- --headless
135- python tests/run.py 3-pythonscript-cython-only --build-dir build/ --godot-binary "${{ matrix.PLATFORM }}:" -- --headless
122+ python tests/run.py 0-gdscript --build-dir build/ -- --headless
123+ python tests/run.py 1-gdextension --build-dir build/ -- --headless
124+ python tests/run.py 2-pythonscript-init --build-dir build/ -- --headless
125+ python tests/run.py 3-pythonscript-cython-only --build-dir build/ -- --headless
136126 # - name: 'Install Mesa3D OpenGL'
137127 # shell: bash
138128 # run: |
You can’t perform that action at this time.
0 commit comments