Skip to content

Commit 6139505

Browse files
contrib/generate-types: Add script to regenerate types
1 parent d46cd10 commit 6139505

33 files changed

+1902
-36
lines changed

contrib/generate-types.sh

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#!/bin/bash
2+
3+
set -x
4+
5+
tag=$(git describe --tag)
6+
7+
./bootstrap.sh
8+
9+
REPO_VERSION=${tag#v}-upfluence ./configure --enable-ilbs --with-c-glib=off \
10+
--with-cpp=off
11+
12+
13+
make
14+
15+
pushd lib
16+
make generate-types
17+
popd
18+
19+
make clean

lib/cpp/src/thrift/types/known/any_constants.cpp

+17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/cpp/src/thrift/types/known/any_constants.h

+24
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/cpp/src/thrift/types/known/any_types.cpp

+129
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/cpp/src/thrift/types/known/any_types.h

+68
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/cpp/src/thrift/types/known/duration_constants.cpp

+17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/cpp/src/thrift/types/known/duration_constants.h

+24
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)