Skip to content

Commit

Permalink
fix(ci): fix ci
Browse files Browse the repository at this point in the history
Signed-off-by: Sacha Froment <sfroment42@gmail.com>
  • Loading branch information
sfroment committed Mar 20, 2019
1 parent fafe0c7 commit c3aea71
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 deletions.
Binary file modified client/common/openssl/built/ios/libcrypto.a
Binary file not shown.
Binary file modified client/common/openssl/built/ios/libssl.a
Binary file not shown.
4 changes: 2 additions & 2 deletions client/common/openssl/openssl-ios.sh
Expand Up @@ -15,7 +15,7 @@ tar zxf "openssl-${OPENSSL_VERSION}.tar.gz"
pushd "openssl-${OPENSSL_VERSION}"

# Apply patches
patch -p3 < "$GOPATH/src/berty.tech/scripts/patches/openssl-omit-frame-pointer.diff" Configure
patch -p3 < "$GOPATH/src/berty.tech/client/common/openssl/patches/openssl-omit-frame-pointer.diff" Configure

if [ "${ARCH}" == "i386" ] || [ "${ARCH}" == "x86_64" ]; then
if [ "${ARCH}" == "x86_64" ]; then
Expand All @@ -32,7 +32,7 @@ pushd "openssl-${OPENSSL_VERSION}"
fi
fi

export CC="${CLANG} -arch ${ARCH} -fPIE ${PLATFORM_VERSION_MIN}"
export CC="${CLANG} -arch ${ARCH} -fPIE ${PLATFORM_VERSION_MIN} -fembed-bitcode"
export CROSS_TOP="${DEVELOPER}/Platforms/${PLATFORM}.platform/Developer"
export CROSS_SDK="${PLATFORM}${SDK}.sdk"

Expand Down
34 changes: 17 additions & 17 deletions client/react-native/common/graphql/queries/EventUnseen.js
Expand Up @@ -4,25 +4,25 @@ import { event } from '../../utils'
import { merge } from '../../helpers'

const query = graphql`
query EventUnseenQuery(
$filter: BertyEntityEventInput
$orderBy: String!
$orderDesc: Bool!
$count: Int32
$cursor: String
$onlyWithoutAckedAt: Enum
$onlyWithoutSeenAt: Enum
) {
query EventUnseenQuery(
$filter: BertyEntityEventInput
$orderBy: String!
$orderDesc: Bool!
$count: Int32
$cursor: String
$onlyWithoutAckedAt: Enum
$onlyWithoutSeenAt: Enum
) {
EventUnseen(
filter: $filter
orderBy: $orderBy
orderDesc: $orderDesc
first: $count
after: $cursor
onlyWithoutAckedAt: $onlyWithoutAckedAt
onlyWithoutSeenAt: $onlyWithoutSeenAt
filter: $filter
orderBy: $orderBy
orderDesc: $orderDesc
first: $count
after: $cursor
onlyWithoutAckedAt: $onlyWithoutAckedAt
onlyWithoutSeenAt: $onlyWithoutSeenAt
) {
id
id
senderId
createdAt
updatedAt
Expand Down

0 comments on commit c3aea71

Please sign in to comment.