Skip to content
Snippets Groups Projects
Verified Commit 61369b73 authored by João Magalhães's avatar João Magalhães :rocket:
Browse files

chore: small simplification

parent 31610831
No related branches found
No related tags found
No related merge requests found
Pipeline #3141 passed
...@@ -13,8 +13,7 @@ jobs: ...@@ -13,8 +13,7 @@ jobs:
- name: Checkout code from repository - name: Checkout code from repository
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Build Base - name: Build Base
run: | run: cargo build --release
cargo build --release
- name: Build SDL - name: Build SDL
run: | run: |
cd frontends/sdl cd frontends/sdl
...@@ -52,8 +51,7 @@ jobs: ...@@ -52,8 +51,7 @@ jobs:
rustup override set 1.71.0 rustup override set 1.71.0
rustup default stable-msvc rustup default stable-msvc
- name: Build Base - name: Build Base
run: | run: cargo build --release
cargo build --release
- name: Build SDL - name: Build SDL
run: | run: |
cd frontends/sdl cd frontends/sdl
...@@ -88,8 +86,7 @@ jobs: ...@@ -88,8 +86,7 @@ jobs:
rustup install 1.71.0 rustup install 1.71.0
rustup override set 1.71.0 rustup override set 1.71.0
- name: Build Base - name: Build Base
run: | run: cargo build --release
cargo build --release
- name: Build SDL - name: Build SDL
run: | run: |
cd frontends/sdl cd frontends/sdl
...@@ -121,10 +118,10 @@ jobs: ...@@ -121,10 +118,10 @@ jobs:
steps: steps:
- name: Checkout code from repository - name: Checkout code from repository
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Install wasm-pack
run: cargo install wasm-pack
- name: Build WASM - name: Build WASM
run: | run: wasm-pack build --release --target=web --out-dir=frontends/web/lib -- --features wasm
cargo install wasm-pack
wasm-pack build --release --target=web --out-dir=frontends/web/lib -- --features wasm
- name: Install Node.js 16 - name: Install Node.js 16
uses: actions/setup-node@v3 uses: actions/setup-node@v3
with: with:
...@@ -161,7 +158,7 @@ jobs: ...@@ -161,7 +158,7 @@ jobs:
boytacean-linux/boytacean_libretro.so boytacean-linux/boytacean_libretro.so
boytacean-win32/boytacean-sdl-win32-x64.exe boytacean-win32/boytacean-sdl-win32-x64.exe
boytacean-win32/boytacean.dll boytacean-win32/boytacean.dll
boytacean-win32/boytacean_libretro.dll boytacean-win32/boytacean_libretro.dll
boytacean-mac/boytacean-sdl-mac-x64 boytacean-mac/boytacean-sdl-mac-x64
boytacean-mac/libboytacean.dylib boytacean-mac/libboytacean.dylib
boytacean-mac/boytacean_libretro.dylib boytacean-mac/boytacean_libretro.dylib
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment