Commit 8d7979d 1 parent 4603718 commit 8d7979d Copy full SHA for 8d7979d
File tree 2 files changed +30
-0
lines changed
2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change 22
22
uses : gradle/gradle-build-action@v2
23
23
- name : Build
24
24
run : ./gradlew native_linux_amd64_gcc
25
+ - name : Check results
26
+ run : ls -l build/natives/linux_amd64_gcc
Original file line number Diff line number Diff line change
1
+ name : MacOS amd64 (Intel)
2
+
3
+ on : [push]
4
+
5
+ jobs :
6
+ build :
7
+ runs-on : macos-12
8
+ steps :
9
+ - name : Install SWIG and CMake
10
+ run : |
11
+ brew install swig
12
+ brew install cmake
13
+ - uses : actions/checkout@v3
14
+ with :
15
+ submodules : true
16
+ - name : Set up JDK
17
+ uses : actions/setup-java@v3
18
+ with :
19
+ java-version : ' 11'
20
+ distribution : ' adopt'
21
+ - name : Validate Gradle Wrapper
22
+ uses : gradle/wrapper-validation-action@v1
23
+ - name : Setup Gradle
24
+ uses : gradle/gradle-build-action@v2
25
+ - name : Build
26
+ run : ./gradlew native_macosx_amd64_clang
27
+ - name : Check results
28
+ run : ls -l build/natives/macosx_amd64_clang
You can’t perform that action at this time.
0 commit comments