Skip to content

Commit 92405e6

Browse files
committed
VS Download fix
1 parent 2e19aae commit 92405e6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/of.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
runs-on: windows-2022
120120
strategy:
121121
matrix:
122-
platform: [64, ARM64, ARM64EC]
122+
platform: [x64, ARM64, ARM64EC]
123123
env:
124124
BITS: ${{ matrix.platform }}
125125
ARCH: ${{ matrix.platform }}

scripts/ci/linux/64/build.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,19 @@ else
2525
echo "PLATFORM_CFLAGS += $CUSTOMFLAGS" >> libs/openFrameworksCompiled/project/linux/64/config.linux64.default.mk
2626
sed -i "s/PLATFORM_OPTIMIZATION_CFLAGS_DEBUG = .*/PLATFORM_OPTIMIZATION_CFLAGS_DEBUG = -g0/" libs/openFrameworksCompiled/project/makefileCommon/config.linux.common.mk
2727
cd libs/openFrameworksCompiled/project
28-
make -j2
28+
make -j2 DEBUG=1 MAKEFILE_DEBUG=1
2929
echo "##[endgroup]"
3030

3131
echo "##[group]**** Building emptyExample ****"
3232
cd $ROOT/scripts/templates/linux64
33-
make -j2
33+
make -j2 DEBUG=1 MAKEFILE_DEBUG=1
3434
echo "##[endgroup]"
3535

3636
echo "##[group]**** Building allAddonsExample ****"
3737
cd $ROOT
3838
cp scripts/templates/linux64/Makefile examples/templates/allAddonsExample/
3939
cp scripts/templates/linux64/config.make examples/templates/allAddonsExample/
4040
cd examples/templates/allAddonsExample/
41-
make -j2
41+
make -j2 DEBUG=1 MAKEFILE_DEBUG=1
4242
echo "##[endgroup]"
4343
fi

0 commit comments

Comments
 (0)