Skip to content

Commit

Permalink
Rust Rewrite - Wgpu
Browse files Browse the repository at this point in the history
* 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
PolyMeilex authored May 18, 2020
1 parent 135d2b4 commit b0e19f8
Show file tree
Hide file tree
Showing 499 changed files with 5,353 additions and 11,964 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/rust.yml
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
35 changes: 2 additions & 33 deletions .gitignore
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
22 changes: 0 additions & 22 deletions .travis.yml

This file was deleted.

27 changes: 0 additions & 27 deletions .vscode/launch.json

This file was deleted.

57 changes: 0 additions & 57 deletions .vscode/settings.json

This file was deleted.

27 changes: 12 additions & 15 deletions .vscode/tasks.json
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"
}
]
}
5 changes: 0 additions & 5 deletions BUILD-DEPENDS

This file was deleted.

34 changes: 0 additions & 34 deletions CHANGELOG

This file was deleted.

Loading

0 comments on commit b0e19f8

Please sign in to comment.