Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Travis, badges, licenses and more #1

Merged
merged 6 commits into from
Sep 30, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,28 @@
/.vscode
**/*.rs.bk
Cargo.lock

## CLion specific:

# User-specific stuff
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/**/usage.statistics.xml
.idea/**/dictionaries
.idea/**/shelf

# Generated files
.idea/**/contentModel.xml

# Sensitive or high-churn files
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml
.idea/**/dbnavigator.xml

# Gradle
.idea/**/gradle.xml
.idea/**/libraries
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule "crates/mun_abi/c"]
path = crates/mun_abi/c
url = ../abi-c
url = ../../mun-lang/abi-c
13 changes: 13 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
language: rust
dist: bionic
rust:
- stable

cache: cargo

addons:
apt:
packages:
- llvm-7
- llvm-7-*
- lld-7
6 changes: 6 additions & 0 deletions COPYRIGHT
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Copyright 2019 The Mun Development Team

Licensed under the Apache License, Version 2.0, <docs/LICENSE-APACHE or
http://apache.org/licenses/LICENSE-2.0> or the MIT license <docs/LICENSE-MIT or
http://opensource.org/licenses/MIT>, at your option. This file may not be
copied, modified, or distributed except according to those terms.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[workspace]
members = [
"crates\\*",
"crates/*",
]
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Mun Runtime Experiment

[![Build Status][s1]][ci] [![docs page][docs-badge]][docs] [![MIT/Apache][licence-badge]][li]
[![Join us on Discord][s4]][di] ![Lines of Code][s6]

[s1]: https://travis-ci.org/mun-lang/mun.svg?branch=master
[docs-badge]: https://img.shields.io/badge/docs-website-blue.svg
[docs]: https://docs.mun-lang.org/
[licence-badge]: https://img.shields.io/badge/license-MIT%2FApache-blue.svg
[s4]: https://img.shields.io/discord/602227728480993281.svg?logo=discord
[s6]: https://tokei.rs/b1/github/mun-lang/mun?category=code
[ci]: https://travis-ci.org/mun-lang/mun
[li]: COPYRIGHT
[di]: https://discord.gg/SfvvcCU

An experiment to:

* Detect file changes
Expand Down