We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cad7175 commit 921da3fCopy full SHA for 921da3f
2 files changed
.github/workflows/deploy.yml
@@ -51,6 +51,9 @@ jobs:
51
# Copy core C sources from rayforce/core/ to src/rayforce/
52
cp rayforce-src/core/*.c src/rayforce/
53
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!"
57
58
- name: Build WASM
59
run: |
Makefile
@@ -9,7 +9,7 @@
9
# ============================================================================
10
11
RAYFORCE_GITHUB = https://github.com/RayforceDB/rayforce.git
12
-RAYFORCE_LOCAL = ../rayforce
+RAYFORCE_LOCAL ?= ../rayforce
13
EXEC_DIR = $(shell pwd)
14
BUILD_DIR = $(EXEC_DIR)/build
15
DIST_DIR = $(EXEC_DIR)/dist
0 commit comments