Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,11 @@ ARG CORE_REF
ARG CORE_OPTIONS
RUN echo "$CORE_OPTIONS" | jq -r '.configure_flags // ""' > /tmp/arg_configure_flags

# Install Tracy dependencies if Tracy is enabled
RUN if grep -q "enable-tracy" /tmp/arg_configure_flags; then \
apt-get update && apt-get -y install libcapstone-dev libfreetype6-dev libglfw3-dev libgtk2.0-dev; \
fi

WORKDIR /wd
RUN git clone https://github.com/${CORE_REPO} /wd
RUN git fetch origin ${CORE_REF}
Expand Down
56 changes: 56 additions & 0 deletions images.json
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,62 @@
"additional-tests": []
}
},
{
"tag": "nightly-tracy",
"events": [
"push",
"schedule",
"pull_request"
],
"config": {
"protocol_version_default": 24
},
"deps": [
{
"name": "xdr",
"repo": "stellar/rs-stellar-xdr",
"ref": "main"
},
{
"name": "core",
"repo": "stellar/stellar-core",
"ref": "master",
"options": {
"configure_flags": "--enable-tracy --enable-tracy-capture --enable-tracy-csvexport"
}
},
{
"name": "rpc",
"repo": "stellar/stellar-rpc",
"ref": "main"
},
{
"name": "horizon",
"repo": "stellar/stellar-horizon",
"ref": "main",
"options": {
"pkg": "github.com/stellar/stellar-horizon"
}
},
{
"name": "friendbot",
"repo": "stellar/friendbot",
"ref": "main",
"options": {
"pkg": "github.com/stellar/friendbot"
}
},
{
"name": "lab",
"repo": "stellar/laboratory",
"ref": "main"
}
],
"tests": {
"continue-on-error": true,
"additional-tests": []
}
},
{
"tag": "nightly-next",
"events": [
Expand Down