83
83
run : |
84
84
curl.exe -L --output mesa.7z --url https://github.com/pal1000/mesa-dist-win/releases/download/24.2.7/mesa3d-24.2.7-release-msvc.7z
85
85
"C:\Program Files\7-Zip\7z.exe" x mesa.7z
86
- dir
87
86
systemwidedeploy.cmd 1
87
+ - if : matrix.os == 'windows-latest'
88
+ name : Set locale
89
+ shell : pwsh
90
+ run : |
91
+ Set-Culture pl-PL
92
+ Set-WinSystemLocale -SystemLocale pl-PL
93
+ Set-WinUILanguageOverride -Language pl-PL
94
+ Set-WinUserLanguageList pl-PL -Force
88
95
- name : Install python dependencies
89
96
shell : bash
90
97
run : |
@@ -109,35 +116,35 @@ jobs:
109
116
retention-days : 2
110
117
if-no-files-found : error
111
118
112
- deploy-preview :
113
- name : Deploy tests results
114
- needs :
115
- - run-functional-tests
116
- runs-on : ubuntu-latest
117
- strategy :
118
- matrix :
119
- tested-os : [ubuntu-latest, windows-latest]
120
- defaults :
121
- run :
122
- shell : bash
123
- working-directory : ./tests
124
- steps :
125
- - uses : actions/checkout@v4
126
- - uses : actions/download-artifact@v4
127
- with :
128
- name : report-${{ matrix.tested-os }}
129
- path : tests/report
130
- - name : Install Vercel CLI
131
- run : npm install --global vercel@latest
132
- - name : Pull Vercel Environment Information
133
- run : vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
134
- - name : Build Project Artifacts
135
- run : vercel build --token=${{ secrets.VERCEL_TOKEN }}
136
- - name : Deploy Project Artifacts to Vercel
137
- run : vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }} > url.txt
138
- - name : Add summary
139
- shell : bash
140
- run : |
141
- echo '### Deployed' >> $GITHUB_STEP_SUMMARY
142
- echo ${{ matrix.tested-os }} >> $GITHUB_STEP_SUMMARY
143
- cat url.txt >> $GITHUB_STEP_SUMMARY
119
+ # deploy-preview:
120
+ # name: Deploy tests results
121
+ # needs:
122
+ # - run-functional-tests
123
+ # runs-on: ubuntu-latest
124
+ # strategy:
125
+ # matrix:
126
+ # tested-os: [ubuntu-latest, windows-latest]
127
+ # defaults:
128
+ # run:
129
+ # shell: bash
130
+ # working-directory: ./tests
131
+ # steps:
132
+ # - uses: actions/checkout@v4
133
+ # - uses: actions/download-artifact@v4
134
+ # with:
135
+ # name: report-${{ matrix.tested-os }}
136
+ # path: tests/report
137
+ # - name: Install Vercel CLI
138
+ # run: npm install --global vercel@latest
139
+ # - name: Pull Vercel Environment Information
140
+ # run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
141
+ # - name: Build Project Artifacts
142
+ # run: vercel build --token=${{ secrets.VERCEL_TOKEN }}
143
+ # - name: Deploy Project Artifacts to Vercel
144
+ # run: vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }} > url.txt
145
+ # - name: Add summary
146
+ # shell: bash
147
+ # run: |
148
+ # echo '### Deployed' >> $GITHUB_STEP_SUMMARY
149
+ # echo ${{ matrix.tested-os }} >> $GITHUB_STEP_SUMMARY
150
+ # cat url.txt >> $GITHUB_STEP_SUMMARY
0 commit comments