File tree Expand file tree Collapse file tree 1 file changed +14
-5
lines changed
.github/actions/setup-environment Expand file tree Collapse file tree 1 file changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -27,10 +27,24 @@ runs:
27
27
11
28
28
17
29
29
21
30
+
31
+ # Platform specific setup
30
32
- name : " Redirect konan caches to fast D: drive for Windows runners"
31
33
if : runner.os == 'Windows'
32
34
shell : cmd
33
35
run : echo KONAN_DATA_DIR=D:\.konan>>%GITHUB_ENV%
36
+ - name : Install openssl in mingw environment (for openssl shared testing)
37
+ if : runner.os == 'Windows'
38
+ uses : msys2/setup-msys2@v2
39
+ with :
40
+ release : false
41
+ install : mingw-w64-x86_64-openssl
42
+ - name : Use latest Xcode, so that it will have the latest platforms installed and supported
43
+ if : runner.os == 'macOS'
44
+ uses : maxim-lobanov/setup-xcode@v1
45
+ with :
46
+ xcode-version : latest-stable
47
+
34
48
- uses : gradle/actions/setup-gradle@v4
35
49
with :
36
50
build-scan-publish : true
41
55
cache-read-only : ${{ inputs.cache-read-only }}
42
56
43
57
dependency-graph : ${{ (inputs.submit-dependency-graph == 'true') && 'generate-and-submit' || 'disabled' }}
44
- - if : runner.os == 'Windows'
45
- uses : msys2/setup-msys2@v2
46
- with :
47
- release : false
48
- install : mingw-w64-x86_64-openssl
49
58
- run : ./gradlew commonizeNativeDistribution
50
59
shell : bash
You can’t perform that action at this time.
0 commit comments