Skip to content

Commit

Permalink
Adapt to changes in BoCA.
Browse files Browse the repository at this point in the history
  • Loading branch information
enzo1982 committed Jan 21, 2022
1 parent d478e72 commit 994b9f8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
include:
- os: windows-latest
arch: X86_64
system: system64
system: system-x64
mingw: 64

- os: windows-latest
arch: X86
system: system
system: system-i686
mingw: 32

- os: windows-latest
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/tools/build-windows
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ if [ "$BUILD_ARM64" = True ]; then
PREVIOUS_PATH=$PATH

# Build x86 Core Audio connector
export PATH=`pwd`/system/usr/bin
mkdir -p `pwd`/system/tmp
export PATH=`pwd`/system-i686/usr/bin
mkdir -p `pwd`/system-i686/tmp
mkdir -p bin
export BUILD_X86=True
unset BUILD_ARM64
Expand All @@ -55,8 +55,8 @@ if [ "$BUILD_ARM64" = True ]; then
cd ../../../..

# Build x86-64 Core Audio connector
export PATH=`pwd`/system64/usr/bin
mkdir -p `pwd`/system64/tmp
export PATH=`pwd`/system-x64/usr/bin
mkdir -p `pwd`/system-x64/tmp
mkdir -p bin64
export BUILD_X86_64=True
unset BUILD_X86
Expand Down Expand Up @@ -153,9 +153,9 @@ cp -R components/extension/notifier/freac.extension.notifier $BIN/boca

# Copy other dependencies
if [ "$BUILD_X86" = True ]; then
cp boca/system/usr/bin/libgcc.dll boca/system/usr/bin/libstdc++.dll $BIN
cp boca/system-i686/usr/bin/libgcc.dll boca/system-i686/usr/bin/libstdc++.dll $BIN
elif [ "$BUILD_X86_64" = True ]; then
cp boca/system64/usr/bin/libgcc.dll boca/system64/usr/bin/libstdc++.dll $BIN
cp boca/system-x64/usr/bin/libgcc.dll boca/system-x64/usr/bin/libstdc++.dll $BIN
elif [ "$BUILD_ARM64" = True ]; then
cp boca/system-arm64/usr/aarch64-w64-mingw32/bin/libc++.dll boca/system-arm64/usr/aarch64-w64-mingw32/bin/libunwind.dll $BIN
fi
Expand Down

0 comments on commit 994b9f8

Please sign in to comment.