Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bevyjam
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Graphics
bevyjam
Commits
392d1945
Commit
392d1945
authored
Sep 7, 2022
by
Evy Storozhenko
Browse files
Options
Downloads
Plain Diff
Merge branch 'main' of gitlab.fachschaften.org:smjlstor/bevyjam
parents
d910c171
4553b1ab
Branches
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#99998
passed
Sep 8, 2022
Stage: test
Changes
4
Pipelines
2
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitignore
+7
-0
7 additions, 0 deletions
.gitignore
.gitlab-ci.yml
+23
-7
23 additions, 7 deletions
.gitlab-ci.yml
.vscode/launch.json
+0
-46
0 additions, 46 deletions
.vscode/launch.json
README.md
+4
-0
4 additions, 0 deletions
README.md
with
34 additions
and
53 deletions
.gitignore
+
7
−
0
View file @
392d1945
/target
# Visual Studio Folder
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/*.code-snippets
This diff is collapsed.
Click to expand it.
.gitlab-ci.yml
+
23
−
7
View file @
392d1945
stages
:
-
build
image
:
registry.gitlab.fachschaften.org/falk.rehse/bevyjam-ci:latest
build-cargo
:
stage
:
build
cache
:
key
:
files
:
-
Cargo.lock
paths
:
-
/usr/local/cargo/bin
-
/usr/local/cargo/registry/index
-
/usr/local/cargo/registry/cache
-
/usr/local/cargo/git/db
-
./target
before_script
:
-
echo $RUSTUP_HOME - $(rustup --version)
-
echo $CARGO_HOME - $(cargo --version)
-
echo $PATH
build
:
script
:
-
apk add gcc libgcc pkgconf curl alsa-lib alsa-lib-dev eudev-dev musl-dev
-
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
-
source "$HOME/.cargo/env"
-
cargo build --release --no-default-features
-
mv target/release/bevyjam bevyjam
artifacts
:
paths
:
-
bevyjam
expose_as
:
bevyjam
This diff is collapsed.
Click to expand it.
.vscode/launch.json
deleted
100644 → 0
+
0
−
46
View file @
d910c171
{
//
Use
IntelliSense
to
learn
about
possible
attributes.
//
Hover
to
view
descriptions
of
existing
attributes.
//
For
more
information
,
visit:
https://go.microsoft.com/fwlink/?linkid=
830387
"version"
:
"0.2.0"
,
"configurations"
:
[
{
"type"
:
"lldb"
,
"request"
:
"launch"
,
"name"
:
"Debug executable 'bevyjam'"
,
"cargo"
:
{
"args"
:
[
"build"
,
"--bin=bevyjam"
,
"--package=bevyjam"
,
"--no-default-features"
],
"filter"
:
{
"name"
:
"bevyjam"
,
"kind"
:
"bin"
}
},
"args"
:
[],
"cwd"
:
"${workspaceFolder}"
},
{
"type"
:
"lldb"
,
"request"
:
"launch"
,
"name"
:
"Debug unit tests in executable 'bevyjam'"
,
"cargo"
:
{
"args"
:
[
"test"
,
"--no-run"
,
"--bin=bevyjam"
,
"--package=bevyjam"
],
"filter"
:
{
"name"
:
"bevyjam"
,
"kind"
:
"bin"
}
},
"args"
:
[],
"cwd"
:
"${workspaceFolder}"
}
]
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
README.md
+
4
−
0
View file @
392d1945
...
...
@@ -6,3 +6,7 @@ Code for the bevy jam 2022
```
sh
cargo run
--release
```
## Latest snapshot build
[
download
](
https://gitlab.fachschaften.org/smjlstor/bevyjam/-/jobs/artifacts/main/raw/bevyjam?job=build
)
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