Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
tobil4sk committed Dec 7, 2024
1 parent 49b4115 commit 89df76b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,11 @@ jobs:
shell: pwsh
run: |
Set-PSDebug -Trace 1
echo $env:NUMBER_OF_PROCESSORS
opam exec -- where.exe make
echo "-j=$env:NUMBER_OF_PROCESSORS"
echo "-j=$($env:NUMBER_OF_PROCESSORS)"
# can't figure out how to pass the number of cores here :/
echo exec -- make "-j=$env:NUMBER_OF_PROCESSORS"
echo "exec -- make -j=$env:NUMBER_OF_PROCESSORS"
opam exec "--" make -s -f Makefile.win "-j=$env:NUMBER_OF_PROCESSORS" haxe
opam exec -- make -s -f Makefile.win haxelib
opam exec -- make -f Makefile.win echo_package_files package_bin package_installer_win package_choco
Expand Down
5 changes: 3 additions & 2 deletions extra/github-actions/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@
shell: pwsh
run: |
Set-PSDebug -Trace 1
echo $env:NUMBER_OF_PROCESSORS
opam exec -- where.exe make
echo "-j=$env:NUMBER_OF_PROCESSORS"
echo "-j=$($env:NUMBER_OF_PROCESSORS)"
# can't figure out how to pass the number of cores here :/
echo exec -- make "-j=$env:NUMBER_OF_PROCESSORS"
echo "exec -- make -j=$env:NUMBER_OF_PROCESSORS"
opam exec "--" make -s -f Makefile.win "-j=$env:NUMBER_OF_PROCESSORS" haxe
opam exec -- make -s -f Makefile.win haxelib
opam exec -- make -f Makefile.win echo_package_files package_bin package_installer_win package_choco
Expand Down

0 comments on commit 89df76b

Please sign in to comment.