-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5c915ed
commit d54919c
Showing
8 changed files
with
37 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -84,18 +84,24 @@ environment: | |
APPVEYOR_BUILD_WORKER_IMAGE: macos-monterey | ||
HOMEBREW_NO_INSTALL_CLEANUP: 1 | ||
CC: clang | ||
CFLAGS: "-I/usr/local/include" | ||
LDFLAGS: "-L/usr/local/lib" | ||
CONFIGURE_OPTIONS: "" | ||
- TARGET: macos-x64-gcc | ||
BUILD_ENVIRONMENT: xcode | ||
APPVEYOR_BUILD_WORKER_IMAGE: macos-monterey | ||
HOMEBREW_NO_INSTALL_CLEANUP: 1 | ||
CC: gcc | ||
CFLAGS: "-I/usr/local/include" | ||
LDFLAGS: "-L/usr/local/lib" | ||
CONFIGURE_OPTIONS: "" | ||
- TARGET: macos-x64-gcc-python | ||
BUILD_ENVIRONMENT: xcode | ||
APPVEYOR_BUILD_WORKER_IMAGE: macos-monterey | ||
PYTHON: "/usr/local/opt/[email protected]/bin/python3" | ||
PYTHON_CONFIG: "/usr/local/opt/[email protected]/bin/python3-config" | ||
HOMEBREW_NO_INSTALL_CLEANUP: 1 | ||
CC: gcc | ||
CFLAGS: "-I/usr/local/include" | ||
LDFLAGS: "-L/usr/local/lib" | ||
CONFIGURE_OPTIONS: "--enable-python" | ||
|
@@ -105,6 +111,7 @@ environment: | |
PYTHON: "/usr/local/opt/[email protected]/bin/python3" | ||
PYTHON_CONFIG: "/usr/local/opt/[email protected]/bin/python3-config" | ||
HOMEBREW_NO_INSTALL_CLEANUP: 1 | ||
CC: gcc | ||
CFLAGS: "-I/usr/local/include" | ||
LDFLAGS: "-L/usr/local/lib" | ||
CONFIGURE_OPTIONS: "--disable-dependency-tracking --prefix=/usr/local --enable-python --with-pyprefix" | ||
|
@@ -140,6 +147,12 @@ environment: | |
HOMEBREW_NO_INSTALL_CLEANUP: 1 | ||
PYTHON_VERSION: 3.11 | ||
TOXENV: py311 | ||
- TARGET: macos-tox-py312 | ||
BUILD_ENVIRONMENT: python-tox | ||
APPVEYOR_BUILD_WORKER_IMAGE: macos-monterey | ||
HOMEBREW_NO_INSTALL_CLEANUP: 1 | ||
PYTHON_VERSION: 3.12 | ||
TOXENV: py312 | ||
- TARGET: cygwin64-gcc | ||
BUILD_ENVIRONMENT: cygwin64 | ||
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022 | ||
|
@@ -184,7 +197,7 @@ install: | |
- cmd: if [%BUILD_ENVIRONMENT%]==[msbuild] ( | ||
git clone https://github.com/libyal/vstools.git ..\vstools ) | ||
- sh: if test ${BUILD_ENVIRONMENT} = "python-tox" || test ${BUILD_ENVIRONMENT} = "xcode"; then brew update-reset && brew update -q; fi | ||
- sh: if test ${BUILD_ENVIRONMENT} = "python-tox" || test ${BUILD_ENVIRONMENT} = "xcode"; then brew install -q gettext gnu-sed || true; fi | ||
- sh: if test ${BUILD_ENVIRONMENT} = "python-tox" || test ${BUILD_ENVIRONMENT} = "xcode"; then brew install -q autoconf automake gettext gnu-sed libtool openssl pkg-config || true; fi | ||
- sh: if test ${BUILD_ENVIRONMENT} = "python-tox"; then brew install -q python@${PYTHON_VERSION} tox twine-pypi || true; fi | ||
- cmd: if [%BUILD_ENVIRONMENT%]==[python] ( | ||
"%PYTHON%" -m pip install -U pip setuptools twine wheel ) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,5 +8,6 @@ set -e | |
./synclibs.sh --use-head | ||
./autogen.sh | ||
./configure "$@" | ||
make > /dev/null | ||
# make > /dev/null | ||
make | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters