Compare commits

..

4 Commits

Author SHA1 Message Date
Bartosz Taudul
dd29819f3d Merge pull request #1472 from alandtse/fix/emscripten-deploy-fork-guard
ci(emscripten): skip SFTP deploy on forks
2026-09-15 13:04:37 +02:00
Alan Tse
2ba0e21c97 ci(emscripten): skip SFTP deploy on forks
The deploy job SFTPs the emscripten build using repo secrets
(SERVER/USERNAME/PRIVATE_KEY/REMOTE_PATH) that only exist upstream.
On a fork these are empty, so every push to a fork's master fails
with "remote_path is empty" even though the actual build succeeded.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01LVBiYgtsB6okBueTwp5swa
2026-09-15 02:38:43 -07:00
Bartosz Taudul
a6d16f5515 Move LockHighlight to the timeline draw header. 2026-09-14 21:02:00 +02:00
Bartosz Taudul
e58f4819ba Merge pull request #1470 from wolfpld/slomp/webgpu-capacity
Increased the max query limit of TracyWebGPU.hpp
2026-09-14 19:33:05 +02:00
4 changed files with 11 additions and 10 deletions

View File

@@ -69,7 +69,7 @@ jobs:
deploy: deploy:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: build-emscripten needs: build-emscripten
if: github.ref == 'refs/heads/master' if: github.ref == 'refs/heads/master' && github.repository == 'wolfpld/tracy'
steps: steps:
- uses: actions/download-artifact@v4 - uses: actions/download-artifact@v4
- uses: wlixcc/SFTP-Deploy-Action@v1.2.4 - uses: wlixcc/SFTP-Deploy-Action@v1.2.4

View File

@@ -108,6 +108,15 @@ struct LockDraw
std::vector<LockDrawItem> data; std::vector<LockDrawItem> data;
}; };
struct LockHighlight
{
int64_t id;
int64_t begin;
int64_t end;
uint8_t thread;
bool blocked;
};
} }
#endif #endif

View File

@@ -22,6 +22,7 @@
#include "TracyMarkdown.hpp" #include "TracyMarkdown.hpp"
#include "TracySourceContents.hpp" #include "TracySourceContents.hpp"
#include "TracyTimelineController.hpp" #include "TracyTimelineController.hpp"
#include "TracyTimelineDraw.hpp"
#include "TracyUserData.hpp" #include "TracyUserData.hpp"
#include "TracyUtility.hpp" #include "TracyUtility.hpp"
#include "TracyViewData.hpp" #include "TracyViewData.hpp"

View File

@@ -372,15 +372,6 @@ struct LockMap
TimeRange range[64]; TimeRange range[64];
}; };
struct LockHighlight
{
int64_t id;
int64_t begin;
int64_t end;
uint8_t thread;
bool blocked;
};
struct GpuEvent struct GpuEvent
{ {