mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
remove demo page from navigation and remove build action
This commit is contained in:
parent
80ff5e3e63
commit
69a97d324d
4 changed files with 6 additions and 32 deletions
28
.github/workflows/release.yml
vendored
28
.github/workflows/release.yml
vendored
|
@ -33,31 +33,3 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: luau-${{matrix.os}}
|
name: luau-${{matrix.os}}
|
||||||
path: Release\luau*.exe
|
path: Release\luau*.exe
|
||||||
web:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
- name: setup emsdk
|
|
||||||
uses: mymindstorm/setup-emsdk@v9
|
|
||||||
with:
|
|
||||||
version: 1.38.40
|
|
||||||
actions-cache-folder: 'emsdk-cache'
|
|
||||||
- name: verify emsdk
|
|
||||||
run: |
|
|
||||||
emcc -v # verify emscripten installed successfully
|
|
||||||
- name: cmake configure
|
|
||||||
run: |
|
|
||||||
emcmake cmake .
|
|
||||||
- name: build
|
|
||||||
run: |
|
|
||||||
cmake --build . --target Luau.Repl.CLI --config Debug # as seen above but only Repl.CLI.
|
|
||||||
- uses: actions/upload-artifact@v2
|
|
||||||
with:
|
|
||||||
name: luau.wasm
|
|
||||||
path: docs/assets/luau/luau.wasm
|
|
||||||
if-no-files-found: error
|
|
||||||
- uses: actions/upload-artifact@v2
|
|
||||||
with:
|
|
||||||
name: luau.js
|
|
||||||
path: docs/assets/luau/luau.js
|
|
||||||
if-no-files-found: error
|
|
|
@ -174,7 +174,7 @@ static std::string runCode(lua_State* L, const std::string& source)
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
std::string error;
|
std::string error;
|
||||||
|
|
||||||
if (status == LUA_YIELD)
|
if (status == LUA_YIELD)
|
||||||
{
|
{
|
||||||
error = "thread yielded unexpectedly";
|
error = "thread yielded unexpectedly";
|
||||||
|
|
|
@ -25,5 +25,7 @@ pages:
|
||||||
url: /profile
|
url: /profile
|
||||||
- title: Library
|
- title: Library
|
||||||
url: /library
|
url: /library
|
||||||
- title: Demo
|
|
||||||
url: /demo
|
# Remove demo pages until solution is found
|
||||||
|
# - title: Demo
|
||||||
|
# url: /demo
|
||||||
|
|
|
@ -47,4 +47,4 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<script async src="assets/luau/luau.js"></script>
|
<script async src="assets/luau/luau.js"></script>
|
||||||
|
|
Loading…
Add table
Reference in a new issue