Skip to content

Commit e936998

Browse files
authored
Pin to an old version of u3d (#300)
* Pin to an old version of u3d * Add u3d pinning to the rest
1 parent f349058 commit e936998

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

.github/workflows/android.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ jobs:
2727
LC_ALL: en_US.UTF-8
2828
LANG: en_US.UTF-8
2929
U3D_PASSWORD: ""
30+
# Disable checking for U3D updates, since it is buggy
31+
U3D_SKIP_UPDATE_CHECK: 1
3032
CCACHE_DIR: ${{ github.workspace }}/ccache_dir
3133

3234
steps:
@@ -71,7 +73,7 @@ jobs:
7173

7274
- name: Install Unity installer (U3D)
7375
shell: bash
74-
run: gem install u3d
76+
run: gem install u3d -v 1.2.3
7577

7678
- name: Install python deps
7779
shell: bash

.github/workflows/integration_tests.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -210,13 +210,15 @@ jobs:
210210
LC_ALL: en_US.UTF-8
211211
LANG: en_US.UTF-8
212212
U3D_PASSWORD: ""
213+
# Disable checking for U3D updates, since it is buggy
214+
U3D_SKIP_UPDATE_CHECK: 1
213215
steps:
214216
- uses: actions/checkout@v2
215217
- name: Install Unity installer (U3D)
216218
timeout-minutes: 10
217219
shell: bash
218220
run: |
219-
gem install u3d
221+
gem install u3d -v 1.2.3
220222
u3d available
221223
# u3d available -u ${{ matrix.unity_version }} -p
222224
- name: Setup python

.github/workflows/ios.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ jobs:
2929
LC_ALL: en_US.UTF-8
3030
LANG: en_US.UTF-8
3131
U3D_PASSWORD: ""
32+
# Disable checking for U3D updates, since it is buggy
33+
U3D_SKIP_UPDATE_CHECK: 1
3234
xcodeVersion: "13.3.1"
3335

3436
steps:
@@ -64,7 +66,7 @@ jobs:
6466
6567
- name: Install Unity installer (U3D)
6668
shell: bash
67-
run: gem install u3d
69+
run: gem install u3d -v 1.2.3
6870

6971
- name: Install python deps
7072
shell: bash

.github/workflows/sdk_build.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ jobs:
4848
LC_ALL: en_US.UTF-8
4949
LANG: en_US.UTF-8
5050
U3D_PASSWORD: ""
51+
# Disable checking for U3D updates, since it is buggy
52+
U3D_SKIP_UPDATE_CHECK: 1
5153
steps:
5254
- uses: actions/checkout@v2
5355
with:
@@ -73,7 +75,7 @@ jobs:
7375

7476
- name: Install Unity installer (U3D)
7577
shell: bash
76-
run: gem install u3d
78+
run: gem install u3d -v 1.2.3
7779

7880
- name: Setup python
7981
uses: actions/setup-python@v2

0 commit comments

Comments
 (0)