Skip to content
Snippets Groups Projects
Commit 392d1945 authored by Evy Storozhenko's avatar Evy Storozhenko
Browse files

Merge branch 'main' of gitlab.fachschaften.org:smjlstor/bevyjam

parents d910c171 4553b1ab
Branches
No related tags found
No related merge requests found
Pipeline #99998 passed
/target
# Visual Studio Folder
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/*.code-snippets
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
{
// 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
......@@ -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)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment