Skip to content

Commit

Permalink
Fix timing on WASM (#606)
Browse files Browse the repository at this point in the history
Also includes the language server in the release artefacts.
  • Loading branch information
mmarx authored Jan 27, 2025
2 parents 4c7f58b + 49cd7d5 commit 0e38b94
Show file tree
Hide file tree
Showing 3 changed files with 324 additions and 301 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
command: "build"
toolchain: "nightly"
target: ${{ matrix.platform.target }}
args: "--locked --release --bin=nmo"
args: "--locked --release --bin=nmo --bin=nemo-language-server"
strip: true
- name: Build archive
shell: bash
Expand All @@ -52,11 +52,13 @@ jobs:
cp {README.md,LICENSE-APACHE,LICENSE-MIT} "$name"
if [ "${{ matrix.platform.runs-on }}" = "windows-latest" ]; then
cp "target/${{ matrix.platform.target }}/release/nmo.exe" "$name/"
cp "target/${{ matrix.platform.target }}/release/nemo-language-server.exe" "$name/"
asset=$name.zip
7z a "$asset" "$name"
echo ASSET=$asset >> $GITHUB_ENV
else
cp "target/${{ matrix.platform.target }}/release/nmo" "$name/"
cp "target/${{ matrix.platform.target }}/release/nemo-language-server "$name/"
asset=$name.tar.gz
tar czf "$asset" "$name"
echo ASSET=$asset >> $GITHUB_ENV
Expand Down
Loading

0 comments on commit 0e38b94

Please sign in to comment.