Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Bevy 2D Template
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Microhacks
Bevy 2D Template
Commits
8c234a3e
Verified
Commit
8c234a3e
authored
2 years ago
by
Louis
Browse files
Options
Downloads
Patches
Plain Diff
Update build scripts
parent
67e5135d
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+59
-16
59 additions, 16 deletions
.gitlab-ci.yml
Makefile
+6
-0
6 additions, 0 deletions
Makefile
game_core/Trunk.toml
+2
-0
2 additions, 0 deletions
game_core/Trunk.toml
with
67 additions
and
16 deletions
.gitlab-ci.yml
+
59
−
16
View file @
8c234a3e
...
...
@@ -3,59 +3,97 @@ image: "r.lcr.gr/microhacks/bevy-builder:latest"
variables
:
BINARY_NAME
:
game
.cache_directive
:
&cache_directive
stages
:
-
build
-
package
build-windows
:
stage
:
build
before_script
:
-
export CARGO_HOME="${CI_PROJECT_DIR}/.cargo"
-
export PATH="${CI_PROJECT_DIR}/.cargo/bin:$PATH"
cache
:
key
:
build-cache-
key
key
:
build-cache-
windows
paths
:
-
.cargo/registry/cache
-
.cargo/registry/index
-
.cargo/git/db
-
.cargo/bin/
-
target/
stages
:
-
build
-
package
build-windows
:
stage
:
build
<<
:
*cache_directive
script
:
-
cargo build --release -p game_core --target x86_64-pc-windows-gnu
artifacts
:
expire_in
:
1 day
paths
:
-
target/x86_64-pc-windows-gnu/release/game_core.exe
only
:
-
trunk
build-linux
:
stage
:
build
<<
:
*cache_directive
before_script
:
-
export CARGO_HOME="${CI_PROJECT_DIR}/.cargo"
-
export PATH="${CI_PROJECT_DIR}/.cargo/bin:$PATH"
cache
:
key
:
build-cache-linux
paths
:
-
.cargo/registry/cache
-
.cargo/registry/index
-
.cargo/git/db
-
.cargo/bin/
-
target/
script
:
-
cargo build --release -p game_core --target x86_64-unknown-linux-gnu
artifacts
:
expire_in
:
1 day
paths
:
-
target/x86_64-unknown-linux-gnu/release/game_core
only
:
-
trunk
build-web
:
stage
:
build
<<
:
*cache_directive
before_script
:
-
export CARGO_HOME="${CI_PROJECT_DIR}/.cargo"
-
export PATH="${CI_PROJECT_DIR}/.cargo/bin:$PATH"
cache
:
key
:
build-cache-web
paths
:
-
.cargo/registry/cache
-
.cargo/registry/index
-
.cargo/git/db
-
.cargo/bin/
-
target/
script
:
-
make assets
-
cd "${CI_PROJECT_DIR}/game_core" && trunk build --release
-
cd "${CI_PROJECT_DIR}"
artifacts
:
expire_in
:
1 day
paths
:
-
game_core/dist/
only
:
-
trunk
package-all
:
stage
:
package
<<
:
*cache_directive
script
:
-
mkdir -p dist/
-
make assets
-
cp -r assets dist/assets
-
cp target/x86_64-unknown-linux-gnu/release/game_core "dist/$BINARY_NAME"
-
cp target/x86_64-pc-windows-gnu/release/game_core.exe "dist/$BINARY_NAME.exe"
-
cd "${CI_PROJECT_DIR}/dist && zip -r "windows.zip" "./${BINARY_NAME}.exe" ./assets
-
cd "${CI_PROJECT_DIR}/dist && zip -r "linux.zip" "./${BINARY_NAME}" ./assets
-
cd "${CI_PROJECT_DIR}/game_core/dist && zip -r "../../dist/web.zip" "./*"
-
cd "${CI_PROJECT_DIR}/dist" && zip -r "windows.zip" "./${BINARY_NAME}.exe" ./assets
-
cd "${CI_PROJECT_DIR}/dist" && zip -r "linux.zip" "./${BINARY_NAME}" ./assets
-
ls "${CI_PROJECT_DIR}/game_core/dist"
-
cd "${CI_PROJECT_DIR}/game_core/dist" && zip -r "web.zip" ./*
-
cd "${CI_PROJECT_DIR}" && mv "${CI_PROJECT_DIR}/game_core/dist/web.zip" "${CI_PROJECT_DIR}/dist/web.zip"
dependencies
:
-
build-windows
-
build-linux
-
build-web
artifacts
:
expire_in
:
7 days
paths
:
-
dist/web.zip
-
dist/windows.zip
...
...
@@ -66,10 +104,15 @@ package-all:
pages
:
stage
:
package
script
:
-
ls game_core/
-
ls game_core/dist/
-
mkdir -p public/
-
cp -r game_core/dist/* public/
artifacts
:
expire_in
:
7 days
paths
:
-
public
dependencies
:
-
build-web
only
:
-
trunk
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Makefile
+
6
−
0
View file @
8c234a3e
...
...
@@ -14,6 +14,12 @@ cargo-deps:
setup-x11
:
linux-deps cargo-deps
setup-wayland
:
linux-deps wayland-deps cargo-deps
# Update this command to build assets; commonly using Crunch to generate asset files
# If you remove this command, be sure to update .gitlab-ci.yml to remove the steps that
# call "make assets"
assets
:
@
echo
"Beep Boop, No assets needed to be built"
run
:
RUSTFLAGS
=
"-Awarnings"
\
cargo run
--release
--features
"bevy/dynamic"
-p
game_core
...
...
This diff is collapsed.
Click to expand it.
game_core/Trunk.toml
0 → 100644
+
2
−
0
View file @
8c234a3e
[build]
public_url
=
"./"
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment