File tree 4 files changed +13
-8
lines changed
4 files changed +13
-8
lines changed Original file line number Diff line number Diff line change 9
9
strategy :
10
10
fail-fast : false
11
11
matrix :
12
- os : [ubuntu-20.04, macos-13]
12
+ os : [ubuntu-20.04, macos-13, macos-14 ]
13
13
include :
14
14
- os : ubuntu-20.04
15
15
lib-ext : so
16
16
artifact : linux-x64
17
17
- os : macos-13
18
18
lib-ext : dylib
19
19
artifact : osx-x64
20
+ - os : macos-14
21
+ lib-ext : dylib
22
+ artifact : osx-arm64
20
23
21
24
steps :
22
25
- uses : actions/checkout@v4
23
26
24
27
- uses : lukka/get-cmake@latest
25
28
26
29
- name : Install OpenMP on macOS
27
- if : matrix.os == 'macos-13'
30
+ if : contains( matrix.os, 'macos')
28
31
run : HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 brew reinstall --build-from-source --formula ./libomp.rb
29
32
30
33
- name : CMake build
@@ -51,13 +54,13 @@ jobs:
51
54
include :
52
55
- arch : x86
53
56
vs-arch : win32
54
- test : ' ON '
57
+ test : " ON "
55
58
- arch : x64
56
59
vs-arch : x64
57
- test : ' ON '
60
+ test : " ON "
58
61
- arch : arm64
59
62
vs-arch : ARM64
60
- test : ' OFF'
63
+ test : " OFF"
61
64
62
65
steps :
63
66
- uses : actions/checkout@v4
Original file line number Diff line number Diff line change 8
8
# endif()
9
9
set (CMAKE_POLICY_DEFAULT_CMP0077 NEW)
10
10
# set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>")
11
- project (Thot VERSION 3.4.6 LANGUAGES CXX C)
11
+ project (Thot VERSION 3.4.7 LANGUAGES CXX C)
12
12
13
13
list (APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR} /cmake" )
14
14
Original file line number Diff line number Diff line change 2
2
<package >
3
3
<metadata >
4
4
<id >Thot</id >
5
- <version >3.4.6 </version >
5
+ <version >3.4.7 </version >
6
6
<title >Thot</title >
7
7
<authors >Daniel Ortiz-Martínez,SIL International</authors >
8
8
<owners >sil-lsdev</owners >
22
22
<file src =" Thot.netstandard1.0.props" target =" build\netstandard1.0\Thot.props" />
23
23
<file src =" ..\artifacts\win-x86\thot.dll" target =" runtimes\win-x86\native" />
24
24
<file src =" ..\artifacts\win-x64\thot.dll" target =" runtimes\win-x64\native" />
25
+ <file src =" ..\artifacts\win-arm64\thot.dll" target =" runtimes\win-arm64\native" />
25
26
<file src =" ..\artifacts\linux-x64\libthot.so" target =" runtimes\linux-x64\native" />
26
27
<file src =" ..\artifacts\osx-x64\libthot.dylib" target =" runtimes\osx-x64\native" />
28
+ <file src =" ..\artifacts\osx-arm64\libthot.dylib" target =" runtimes\osx-arm64\native" />
27
29
<file src =" _._" target =" lib\net45\_._" />
28
30
<file src =" _._" target =" lib\netstandard1.0\_._" />
29
31
</files >
Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ def build_extension(self, ext):
143
143
# logic and declaration, and simpler if you include description/version in a file.
144
144
setup (
145
145
name = "sil-thot" ,
146
- version = "3.4.6 " ,
146
+ version = "3.4.7 " ,
147
147
author = "SIL International" ,
148
148
maintainer = "Damien Daspit" ,
149
149
maintainer_email = "[email protected] " ,
You can’t perform that action at this time.
0 commit comments