Skip to content

Commit

Permalink
fix: clone detours into correct location
Browse files Browse the repository at this point in the history
  • Loading branch information
notmeta committed Nov 9, 2024
1 parent 7252feb commit f61b7b7
Showing 1 changed file with 11 additions and 17 deletions.
28 changes: 11 additions & 17 deletions .github/workflows/launcher.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,50 +53,48 @@ jobs:
- run: choco install innosetup --version 6.3.3
- name: clone detours
run: |
cd installer
git clone --depth 1 https://github.com/microsoft/Detours detours
pushd detours
cd installer/detours
git fetch --depth=1 origin 66d6f2d34aba564d373083621cacf66ec51199b2
git checkout 66d6f2d34aba564d373083621cacf66ec51199b2
popd
- name: clone dropt
run: |
cd installer/native
git clone --depth 1 https://github.com/jamesderlin/dropt dropt
pushd dropt
cd dropt
git fetch --depth=1 origin cdf507c7a2d5051da88985ff02be8b0b9c6935a8
git checkout cdf507c7a2d5051da88985ff02be8b0b9c6935a8
popd
- name: clone sajson
run: |
cd installer/native
git clone --depth 1 https://github.com/chadaustin/sajson sajson
pushd sajson
cd sajson
git fetch --depth=1 origin 791799ad90f7179f132ea2f53b90ef98f1d399a2
git checkout 791799ad90f7179f132ea2f53b90ef98f1d399a2
popd
- uses: ilammy/msvc-dev-cmd@v1 # for nmake
with:
arch: x64
- name: build detours x64
shell: cmd
run: |
cd detours/src
cd installer/detours/src
nmake
- uses: ilammy/msvc-dev-cmd@v1 # for nmake
with:
arch: x86
- name: build detours x86
shell: cmd
run: |
cd detours/src
cd installer/detours/src
nmake
- uses: ilammy/msvc-dev-cmd@v1 # for nmake
with:
arch: amd64_arm64
- name: build detours aarch64
shell: cmd
run: |
cd detours/src
cd installer/detours/src
nmake
- name: x64 installer
shell: bash
Expand Down Expand Up @@ -132,18 +130,16 @@ jobs:
run: |
cd installer/native
git clone --depth 1 https://github.com/jamesderlin/dropt dropt
pushd dropt
cd dropt
git fetch --depth=1 origin cdf507c7a2d5051da88985ff02be8b0b9c6935a8
git checkout cdf507c7a2d5051da88985ff02be8b0b9c6935a8
popd
- name: clone sajson
run: |
cd installer/native
git clone --depth 1 https://github.com/chadaustin/sajson sajson
pushd sajson
cd sajson
git fetch --depth=1 origin 791799ad90f7179f132ea2f53b90ef98f1d399a2
git checkout 791799ad90f7179f132ea2f53b90ef98f1d399a2
popd
- name: linux-x64
run: ./installer/scripts/build-linux-x86_64.sh
- name: linux-aarch64
Expand Down Expand Up @@ -173,18 +169,16 @@ jobs:
run: |
cd installer/native
git clone --depth 1 https://github.com/jamesderlin/dropt dropt
pushd dropt
cd dropt
git fetch --depth=1 origin cdf507c7a2d5051da88985ff02be8b0b9c6935a8
git checkout cdf507c7a2d5051da88985ff02be8b0b9c6935a8
popd
- name: clone sajson
run: |
cd installer/native
git clone --depth 1 https://github.com/chadaustin/sajson sajson
pushd sajson
cd sajson
git fetch --depth=1 origin 791799ad90f7179f132ea2f53b90ef98f1d399a2
git checkout 791799ad90f7179f132ea2f53b90ef98f1d399a2
popd
- name: clone create-dmg
run: git clone https://github.com/runelite/create-dmg -b runelite-1.0
- name: build create-dmg
Expand Down

0 comments on commit f61b7b7

Please sign in to comment.