Skip to content

Commit

Permalink
Changed travis config.
Browse files Browse the repository at this point in the history
  • Loading branch information
WaDelma committed Sep 11, 2015
1 parent 476214d commit 0b2367f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,10 @@ addons:
- valgrind
- check
- python3.4
install:
before_install:
- curl -L https://static.rust-lang.org/rustup.sh | sh -s -- --channel=stable --yes --prefix=$PWD --disable-sudo
- export PATH=$PATH:$PWD/bin
- export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PWD/lib
before_install:
- mkdir $HOME/bin && ln -s $(which python3.4) $HOME/bin/python3 && export PATH="$HOME/bin:$PATH"
script:
- mvn checkstyle:check
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@

package fi.helsinki.cs.tmc.langs.rust.util;

import java.nio.file.Path;
import java.nio.file.Paths;

public class Constants {
public final class Constants {

public static final Path CARGO_TOML = Paths.get("Cargo.toml");
public static final Path SOURCE = Paths.get("src");
}

0 comments on commit 0b2367f

Please sign in to comment.