build: cleanup (#38)

This commit is contained in:
6arelyFuture 2023-06-25 12:25:25 +02:00 committed by GitHub
parent a8876eb585
commit 02335285e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 16 deletions

View File

@ -21,7 +21,6 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
configuration: configuration:
- Debug
- Release - Release
arch: arch:
- x64 - x64
@ -68,14 +67,11 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
configuration: configuration:
- Debug
- Release - Release
arch: arch:
- x64 - x64
- arm64 - arm64
include: include:
- configuration: Debug
config: debug
- configuration: Release - configuration: Release
config: release config: release
steps: steps:
@ -135,13 +131,10 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
configuration: configuration:
- Debug
- Release - Release
arch: arch:
- x64 - x64
include: include:
- configuration: Debug
config: debug
- configuration: Release - configuration: Release
config: release config: release
- arch: x64 - arch: x64

View File

@ -54,13 +54,11 @@ function libtomcrypt.project()
} }
if os.istarget("darwin") then if os.istarget("darwin") then
filter "platforms:x64"
buildoptions "-march=native" buildoptions "-march=native"
filter {}
end end
linkoptions {
"-IGNORE:4221"
}
warnings "Off" warnings "Off"
kind "StaticLib" kind "StaticLib"
end end

View File

@ -46,10 +46,6 @@ function libtommath.project()
"_USRDLL" "_USRDLL"
} }
linkoptions {
"-IGNORE:4221"
}
warnings "Off" warnings "Off"
kind "StaticLib" kind "StaticLib"
end end