-
Notifications
You must be signed in to change notification settings - Fork 42
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
0677d02
commit 97d8c2e
Showing
5 changed files
with
57 additions
and
130 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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Python docker cibuildwheel | ||
|
||
on: | ||
push: | ||
branches: [ master, release-* ] | ||
paths: | ||
- 'docker/*/Dockerfile' | ||
pull_request: | ||
branches: [ master ] | ||
#paths: | ||
#- 'docker/*/Dockerfile' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build_docker: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: docker/setup-buildx-action@v3 | ||
- name: Log in to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKER_USER }} | ||
password: ${{ secrets.DOCKER_TOKEN }} | ||
- name: Build and push manylinux docker image | ||
uses: docker/build-push-action@v6 | ||
with: | ||
file: docker/manylinux-builder/Dockerfile | ||
push: true | ||
#push: ${{ github.event_name != 'pull_request' }} | ||
build-args: | | ||
- baseimage="quay.io/pypa/manylinux_2_28_x86_64" | ||
tags: keyvidev/manylinux-builder-x86_64 |
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 |
---|---|---|
@@ -1,16 +1,16 @@ | ||
# Snappy, a fast compressor/decompressor | ||
|
||
include(LibFindMacros) | ||
find_path(Snappy_INCLUDE_DIR NAMES snappy.h) | ||
|
||
find_path(Snappy_INCLUDE_DIR | ||
NAMES snappy.h | ||
) | ||
find_library(Snappy_LIBRARY NAMES snappy) | ||
|
||
find_library(Snappy_LIBRARY | ||
NAMES snappy | ||
) | ||
include(SelectLibraryConfigurations) | ||
SELECT_LIBRARY_CONFIGURATIONS(SNAPPY) | ||
|
||
set(Snappy_PROCESS_INCLUDES Snappy_INCLUDE_DIR) | ||
set(Snappy_PROCESS_LIBS Snappy_LIBRARY) | ||
include(FindPackageHandleStandardArgs) | ||
FIND_PACKAGE_HANDLE_STANDARD_ARGS( | ||
Snappy DEFAULT_MSG | ||
Snappy_LIBRARY Snappy_INCLUDE_DIR | ||
) | ||
|
||
libfind_process(Snappy) | ||
mark_as_advanced(Snappy_INCLUDE_DIR Snappy_LIBRARY) |
This file was deleted.
Oops, something went wrong.
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