Skip to content

Commit

Permalink
[FIXUP] test it
Browse files Browse the repository at this point in the history
  • Loading branch information
HannesWell committed Apr 8, 2024
1 parent 5b31077 commit 9df0c46
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
- name: Build on Windows
working-directory: features/org.eclipse.equinox.executable.feature/library/win32
env:
BINARIES_DIR: ${{ github.workspace }}\equinox.binaries
BINARIES_DIR: ${{ github.workspace }}/equinox.binaries
run: .\build.bat -ws win32 -os win32 -arch x86_64 install
if: ${{ matrix.config.ws == 'win32'}}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ $(DLL): $(DLL_OBJS) $(COMMON_OBJS)
$(CC) -bundle -o $(DLL) $(ARCHS) $(DLL_OBJS) $(COMMON_OBJS) $(LIBS)

install: all
$(info Install into: EXE_OUTPUT_DIR:$(EXE_OUTPUT_DIR) LIB_OUTPUT_DIR:$(LIB_OUTPUT_DIR))
mkdir -p $(EXE_OUTPUT_DIR)
mv $(EXEC) $(EXE_OUTPUT_DIR)
mkdir -p $(LIB_OUTPUT_DIR)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ eclipseJNI.obj: ../eclipseCommon.h ../eclipseOS.h ../eclipseJNI.c

eclipseShm.obj: ../eclipseShm.h ../eclipseUnicode.h ../eclipseShm.c
cl $(DEBUG) $(wcflags) $(cvarsmt) /Fo$*.obj ../eclipseShm.c

$(EXEC): $(MAIN_OBJS) $(COMMON_OBJS) $(RES)
link $(LFLAGS) -out:$(PROGRAM_OUTPUT) $(MAIN_OBJS) $(COMMON_OBJS) $(RES) $(LIBS)

Expand All @@ -110,10 +110,11 @@ $(RES): $(PROGRAM_NAME).rc
rc -r -fo $(RES) eclipse.rc

install: all
mkdir $(EXE_OUTPUT_DIR)
@echo Install into: EXE_OUTPUT_DIR:$(EXE_OUTPUT_DIR) LIB_OUTPUT_DIR:$(LIB_OUTPUT_DIR))
-1cmd /c "mkdir $(EXE_OUTPUT_DIR)"
move /y $(EXEC) $(EXE_OUTPUT_DIR)
move /y $(CONSOLE) $(EXE_OUTPUT_DIR)
mkdir $(LIB_OUTPUT_DIR)
-1cmd /c "mkdir $(LIB_OUTPUT_DIR)"
del $(LIB_OUTPUT_DIR)\eclipse_*.dll
move /y $(DLL) $(LIB_OUTPUT_DIR)
del $(MAIN_OBJS) $(MAIN_CONSOLE_OBJS) $(DLL_OBJS) $(COMMON_OBJS) $(RES) eclipse_*.exp eclipse_*.lib
Expand Down

0 comments on commit 9df0c46

Please sign in to comment.