Skip to content

Commit

Permalink
Define github action to build Windows launcher
Browse files Browse the repository at this point in the history
  • Loading branch information
Torbjorn-Svensson authored and vogella committed Apr 15, 2023
1 parent 1d3fd2d commit f4b4c99
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,40 @@ jobs:
name: test-results
if-no-files-found: error
path: '**/target/*-reports/*.xml'
build-launcher-win64:
runs-on: windows-2019
env:
PROGRAM_OUTPUT: eclipse.exe
PROGRAM_LIBRARY: eclipse.dll
DEFAULT_OS: win32
DEFAULT_OS_ARCH: x86_64
DEFAULT_WS: win32
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'temurin'
- name: Visual Studio shell
uses: egor-tensin/vs-shell@v2
with:
arch: x64
- name: Build
working-directory: features/org.eclipse.equinox.executable.feature/library/win32
run: nmake -f make_win64.mak
shell: pwsh
- name: Upload artifacts
uses: actions/upload-artifact@v3
if: success()
with:
name: Windows launcher artifacts
path: |
features/org.eclipse.equinox.executable.feature/library/win32/eclipse*.exe
features/org.eclipse.equinox.executable.feature/library/win32/eclipse*.dll
if-no-files-found: error
tck:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit f4b4c99

Please sign in to comment.