Skip to content

Commit

Permalink
feat: travis, badges, licenses and more (#1)
Browse files Browse the repository at this point in the history
* fix: build fix for macOS in Cargo.toml
* add initial travis file
* updated gitmodules to point to mun-lang org as well so forks still work
* adds build badges, ignores clion files, and adds a COPYRIGHT file
  • Loading branch information
baszalmstra authored Sep 30, 2019
1 parent e014331 commit b63ea51
Show file tree
Hide file tree
Showing 6 changed files with 59 additions and 2 deletions.
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

0 comments on commit b63ea51

Please sign in to comment.