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 7, 2024
1 parent 5b31077 commit 1ab0e66
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,9 @@ jobs:
working-directory: features/org.eclipse.equinox.executable.feature/library/win32
env:
BINARIES_DIR: ${{ github.workspace }}\equinox.binaries
run: .\build.bat -ws win32 -os win32 -arch x86_64 install
run: |
mkdir ${{ github.workspace }}\equinox.binaries\org.eclipse.equinox.executable\bin\win32\win32\x86_64
.\build.bat -ws win32 -os win32 -arch x86_64 install
if: ${{ matrix.config.ws == 'win32'}}

- name: Test native launcher and executable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,8 @@ $(RES): $(PROGRAM_NAME).rc
rc -r -fo $(RES) eclipse.rc

install: all
where mkdir
echo $(EXE_OUTPUT_DIR)
mkdir $(EXE_OUTPUT_DIR)
move /y $(EXEC) $(EXE_OUTPUT_DIR)
move /y $(CONSOLE) $(EXE_OUTPUT_DIR)
Expand Down

0 comments on commit 1ab0e66

Please sign in to comment.