-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Old Project Removed * Rust Rewrite Init Commit * Keyboard And Note Renderers * Fully Working Visualisation * Keyboard Shader * Notes Shader * UI * Better Game States * Midi Out Select * New Main Menu * Update README.md
- Loading branch information
1 parent
135d2b4
commit b0e19f8
Showing
499 changed files
with
5,353 additions
and
11,964 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: Rust | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build_ubuntu: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install alsa | ||
run: sudo apt-get install libasound2-dev | ||
- name: Build | ||
run: cargo build --release --verbose | ||
- name: Run tests | ||
run: cargo test --verbose | ||
- uses: actions/upload-artifact@v2 | ||
with: | ||
name: ubuntu-artifact | ||
path: target/release/neothesia | ||
build_windows: | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Build | ||
run: cargo build --release --verbose | ||
- name: Run tests | ||
run: cargo test --verbose | ||
- uses: actions/upload-artifact@v2 | ||
with: | ||
name: windows-artifact | ||
path: target/release/neothesia.exe | ||
build_macos: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Build | ||
run: cargo build --release --verbose | ||
- name: Run tests | ||
run: cargo test --verbose | ||
- uses: actions/upload-artifact@v2 | ||
with: | ||
name: macos-artifact | ||
path: target/release/neothesia |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,2 @@ | ||
*.o | ||
*.lo | ||
Makefile | ||
Makefile.in | ||
aclocal.m4 | ||
autom4te.cache/ | ||
config.h | ||
config.log | ||
config.status | ||
configure | ||
libtool | ||
src/.deps/ | ||
src/.libs/ | ||
src/Makefile | ||
src/Makefile.in | ||
src/libmidi.la | ||
src/libmidi/.deps/ | ||
src/libmidi/.dirstamp | ||
src/linthesia | ||
stamp-h1 | ||
|
||
build | ||
|
||
# generated with autoreconf -ivf | ||
config.guess | ||
config.sub | ||
m4/ | ||
missing | ||
compile | ||
config.h.in | ||
depcomp | ||
install-sh | ||
ltmain.sh | ||
/target | ||
**/*.rs.bk |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,13 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "make", | ||
"type": "shell", | ||
"command": "cd ${workspaceFolder}/build/ && make", | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
} | ||
} | ||
] | ||
} | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"type": "cargo", | ||
"subcommand": "run", | ||
"problemMatcher": ["$rustc"], | ||
"group": "build" | ||
} | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.