Skip to content

Commit a008a26

Browse files
author
Kevin Harrington
committed
re-adding code
1 parent 70e7da2 commit a008a26

10 files changed

Lines changed: 450 additions & 0 deletions

File tree

.github/workflows/main.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# test
2+
name: CI
3+
4+
on: [push]
5+
6+
jobs:
7+
linux:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v1
12+
- name: Build
13+
run: bash build-linux.sh
14+
15+
windows:
16+
runs-on: windows-latest
17+
steps:
18+
- name: Checkout
19+
uses: actions/checkout@v1
20+
- name: Build
21+
run: make
22+
23+
macos:
24+
runs-on: macos-latest
25+
steps:
26+
- name: Checkout
27+
uses: actions/checkout@v1
28+
- name: Build
29+
run: make

build.gradle

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
/*
2+
* This file was generated by the Gradle 'init' task.
3+
*
4+
* This generated file contains a sample Java application project to get you started.
5+
* For more details take a look at the 'Building Java & JVM projects' chapter in the Gradle
6+
* User Manual available at https://docs.gradle.org/7.2/userguide/building_java_projects.html
7+
*/
8+
9+
plugins {
10+
// Apply the application plugin to add support for building a CLI application in Java.
11+
id 'application'
12+
id 'eclipse'
13+
id 'java'
14+
}
15+
16+
repositories {
17+
// Use Maven Central for resolving dependencies.
18+
mavenCentral()
19+
}
20+
21+
dependencies {
22+
// Use JUnit test framework.
23+
testImplementation 'junit:junit:4.13.2'
24+
implementation group: 'org.bytedeco', name: 'javacpp', version: '1.5.7'
25+
}
26+
27+
application {
28+
// Define the main class for the application.
29+
mainClass = 'mujoco.java.App'
30+
}

gradle/wrapper/gradle-wrapper.jar

58.1 KB
Binary file not shown.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists

gradlew

Lines changed: 234 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 89 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)