File tree 1 file changed +10
-8
lines changed
1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change 6
6
push :
7
7
branches :
8
8
- main
9
+ - ' force_ci/all/**' # For development, forcing all workflows to run.
10
+ - ' force_ci/dist/**' # For debugging and/or only forcing this workflow.
9
11
10
12
jobs :
11
13
build_wheels :
@@ -49,14 +51,14 @@ jobs:
49
51
# Avoid re-building the C library in every iteration by testing for
50
52
# the build directory.
51
53
CIBW_BEFORE_BUILD : >
52
- yum install -y python3-pkgconfig bzip2-devel lz4-devel snappy-devel zlib-devel
53
- python3-Cython &&
54
- test -d ${{ env.LIBROCKSDB_PATH }} || (
55
- git clone https://github.com/facebook/rocksdb --depth 1
56
- --branch ${{ matrix.rocksdb_ver }} ${{ env.LIBROCKSDB_PATH }} &&
57
- cd ${{ env.LIBROCKSDB_PATH }} &&
58
- CXXFLAGS='-flto -Os -s' PORTABLE=1 make shared_lib -j 4
59
- ) &&
54
+ yum install -y bzip2-devel lz4-devel snappy-devel zlib-devel
55
+ python3-Cython && (
56
+ test -d ${{ env.LIBROCKSDB_PATH }} || (
57
+ git clone https://github.com/facebook/rocksdb --depth 1
58
+ --branch ${{ matrix.rocksdb_ver }} ${{ env.LIBROCKSDB_PATH }} &&
59
+ cd ${{ env.LIBROCKSDB_PATH }} &&
60
+ CXXFLAGS='-flto -Os -s' PORTABLE=1 make shared_lib -j 4
61
+ )) &&
60
62
pushd ${{ env.LIBROCKSDB_PATH }} &&
61
63
make install-shared &&
62
64
ldconfig &&
You can’t perform that action at this time.
0 commit comments