Skip to content

Commit

Permalink
Merge branch '0.19.0' into 0.20.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cspwizard committed May 17, 2024
2 parents 0d0ac75 + 567f04c commit 3d68538
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# How to Contribute #




Thank you for your interest in contributing to the Apache Thrift project! Information on why and how to contribute is available on the Apache Software Foundation (ASF) web site. In particular, we recommend the following to become acquainted with Apache Contributions:

* [Contributors Tech Guide](http://www.apache.org/dev/contributors)
Expand Down
14 changes: 14 additions & 0 deletions build/docker/publish/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
FROM gcc:8 as build

RUN apt update && apt upgrade -y && apt install flex bison cmake -y

WORKDIR /usr/src/thrift

COPY . /usr/src/thrift

RUN mkdir cmake-build && cd cmake-build && cmake -DWITH_SHARED_LIB=off .. && make

FROM ubuntu
COPY --from=build /usr/src/thrift/cmake-build/bin/thrift /bin/thrift
WORKDIR /thrift
ENTRYPOINT ["thrift"]
14 changes: 14 additions & 0 deletions docker-hub.appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
version: 1.0.{build}
branches:
only:
- /^(release/)?\d+\.\d+\.\d+$/
image: Ubuntu
clone_depth: 1
environment:
matrix:
- login:
secure: P83FI/K74rS7TKPNZvehYojR3qYFtPDnYt5EDBkymRRGzbjWMXPwtNaqVNe9r5v6zfFXZjmjQKU2r8FY9R9wL+d8YCREe/ZCDojvtQ9jGzhkBhMSLOOyFSjqPeQ7pJvz
build_script:
- sh: docker build compiler/cpp -f build/docker/publish/Dockerfile -t cspwizard/thrift:$APPVEYOR_REPO_BRANCH
- sh: eval $login
- sh: docker push cspwizard/thrift:$APPVEYOR_REPO_BRANCH

0 comments on commit 3d68538

Please sign in to comment.