Skip to content

Commit

Permalink
Bump bleep, add -march=compatibility (#396)
Browse files Browse the repository at this point in the history
* bump to v0.0.4

* native-image: set `-march=compatibility`

* disable auto-shutdown for windows
  • Loading branch information
oyvindberg committed Jul 10, 2024
1 parent fad14ec commit 494026b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,13 +114,13 @@ jobs:
# run: .\${{ matrix.file_name }} --dev compile --no-color jvm3
# if: runner.os == 'Windows'

# - name: Test binary after build 2 (windows)
# shell: cmd
# env:
# CI: true
# # todo: fix tests on windows
# run: .\${{ matrix.file_name }} selftest
# if: runner.os == 'Windows'
- name: Test binary after build 2 (windows)
shell: cmd
env:
CI: true
# todo: fix tests on windows
run: .\${{ matrix.file_name }} selftest
if: runner.os == 'Windows'

- name: Temporarily save package
uses: actions/upload-artifact@v2
Expand Down
1 change: 1 addition & 0 deletions scripts/src/scala/bleep/scripts/GenNativeImage.scala
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ object GenNativeImage extends BleepScript("GenNativeImage") {
logger = started.logger,
jvmCommand = jvm,
nativeImageOptions = List(
"-march=compatibility",
"--no-fallback",
"--enable-http",
"--enable-https",
Expand Down

0 comments on commit 494026b

Please sign in to comment.