Skip to content

Commit 921da3f

Browse files
committed
Debug: verify math.c fix in copied sources
1 parent cad7175 commit 921da3f

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/deploy.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@ jobs:
5151
# Copy core C sources from rayforce/core/ to src/rayforce/
5252
cp rayforce-src/core/*.c src/rayforce/
5353
cp rayforce-src/core/*.h src/rayforce/
54+
# Verify the fix is in copied files
55+
echo "Checking src/rayforce/math.c for fix:"
56+
grep "obj_p(\*)(obj_p, i64_t, i64_t)" src/rayforce/math.c && echo "FIX PRESENT" || echo "FIX MISSING!"
5457
5558
- name: Build WASM
5659
run: |

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# ============================================================================
1010

1111
RAYFORCE_GITHUB = https://github.com/RayforceDB/rayforce.git
12-
RAYFORCE_LOCAL = ../rayforce
12+
RAYFORCE_LOCAL ?= ../rayforce
1313
EXEC_DIR = $(shell pwd)
1414
BUILD_DIR = $(EXEC_DIR)/build
1515
DIST_DIR = $(EXEC_DIR)/dist

0 commit comments

Comments
 (0)