File tree Expand file tree Collapse file tree 5 files changed +38
-54
lines changed Expand file tree Collapse file tree 5 files changed +38
-54
lines changed Original file line number Diff line number Diff line change
1
+ /usr /local /rustup /toolchains /* /lib
2
+ /usr /local /rustup /toolchains /* /share
3
+ build /
4
+ dist /
Original file line number Diff line number Diff line change
1
+ language : python
2
+
3
+ services :
4
+ - docker
5
+
1
6
cache :
2
7
directories :
3
8
- /root/.cache/pip
4
9
- /root/.cargo
5
10
6
- env :
7
- global :
8
- - RURE_DIR=/opt/regex/regex-capi
9
- - REGEX_TAG=0.2.1
10
-
11
- install :
12
- - docker pull $DOCKER_IMAGE
13
-
14
- language : python
15
-
16
- matrix :
17
- include :
18
- - sudo : required
19
- services :
20
- - docker
21
- env : DOCKER_IMAGE=quay.io/davidblewett/manylinux_rure
22
- - sudo : required
23
- services :
24
- - docker
25
- env : DOCKER_IMAGE=quay.io/davidblewett/manylinux_rure
26
- PRE_CMD=linux32
11
+ before_install :
12
+ - docker build -t davidblewett/rure-python .
27
13
28
14
notifications :
29
15
email : false
30
16
31
17
script :
32
- - docker run -e "RURE_DIR=$RURE_DIR" -e "REGEX_TAG=$REGEX_TAG" --rm -v `pwd`:/io $DOCKER_IMAGE $PRE_CMD /io/travis/build-wheels.sh
33
- - ls /io/wheelhouse/
18
+ - docker run davidblewett/rure-python /bin/sh -c "python -m unittest discover -s /root/rure/tests"
Original file line number Diff line number Diff line change
1
+ FROM quay.io/pypa/manylinux1_x86_64
2
+ COPY --from=rust:latest /usr/local/cargo/ /usr/local/cargo/
3
+ COPY --from=rust:latest /usr/local/rustup/ /usr/local/rustup/
4
+
5
+ WORKDIR /root/
6
+ COPY . .
7
FC69
+
8
+ ENV CARGO_HOME=/usr/local/cargo \
9
+ PATH="/usr/local/cargo/bin:/opt/python/cp37-cp37m/bin:$PATH" \
10
+ RUSTUP_HOME=/usr/local/rustup
11
+
12
+ RUN rustc --version && \
13
+ cargo --version
14
+
15
+ RUN python setup.py bdist_wheel && \
16
+ pip install dist/*.whl
Original file line number Diff line number Diff line change 2
2
History
3
3
=======
4
4
5
+ 0.2.1 (2019-04-07)
6
+ ------------------
7
+
8
+ * Update build pipeline to support multiple Python versions
9
+ * Binary wheels compiled against:
10
+
11
+ * Rust: 1.33.0
12
+ * regex: 1.0
13
+ * rure (regex-capi): 0.2.1
14
+
5
15
0.2.0 (2018-03-04)
6
16
------------------
7
17
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments