Skip to content

Commit 14e082d

Browse files
Updated builscript
- Can now compile - Use old version of GTNH Nei, because new version throws up error (idk why)
1 parent 30af0d7 commit 14e082d

495 files changed

Lines changed: 20883 additions & 20902 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.editorconfig

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# This is the universal Text Editor Configuration
2+
# for all GTNewHorizons projects
3+
# See: https://editorconfig.org/
4+
5+
root = true
6+
7+
[*]
8+
charset = utf-8
9+
end_of_line = lf
10+
indent_size = 4
11+
indent_style = space
12+
insert_final_newline = true
13+
trim_trailing_whitespace = true
14+
15+
[*.{bat,ini}]
16+
end_of_line = crlf
17+
18+
[*.{dtd,json,info,mcmeta,md,sh,svg,xml,xsd,xsl,yaml,yml}]
19+
indent_size = 2
20+
21+
[*.lang]
22+
trim_trailing_whitespace = false

.github/scripts/test_no_error_reports

Lines changed: 0 additions & 51 deletions
This file was deleted.

.github/scripts/update_version

Lines changed: 0 additions & 12 deletions
This file was deleted.
Lines changed: 2 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
2-
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
31

42
name: Build and test
53

@@ -11,24 +9,5 @@ on:
119

1210
jobs:
1311
build-and-test:
14-
runs-on: ubuntu-latest
15-
steps:
16-
- uses: actions/checkout@v2
17-
with:
18-
fetch-depth: 0
19-
20-
- name: Set up JDK 8
21-
uses: actions/setup-java@v2
22-
with:
23-
java-version: '8'
24-
distribution: 'adopt'
25-
cache: gradle
26-
27-
- name: Grant execute permission for gradlew
28-
run: chmod +x gradlew
29-
30-
- name: Setup the workspace
31-
run: ./gradlew setupCIWorkspace
32-
33-
- name: Build the mod
34-
run: ./gradlew build
12+
uses: GTNewHorizons/GTNH-Actions-Workflows/.github/workflows/build-and-test.yml@master
13+
secrets: inherit

.github/workflows/release-tags.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
name: Release tagged build
3+
4+
on:
5+
push:
6+
tags: [ '*' ]
7+
8+
permissions:
9+
contents: write
10+
11+
jobs:
12+
release-tags:
13+
uses: GTNewHorizons/GTNH-Actions-Workflows/.github/workflows/release-tags.yml@master
14+
secrets: inherit

.gitignore

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,13 @@ whitelist.json
2626
*.iml
2727
*.ipr
2828
*.iws
29-
src/main/resources/mixins.*.json
29+
src/main/resources/mixins.*([!.]).json
3030
*.bat
3131
*.DS_Store
3232
!gradlew.bat
33+
.factorypath
34+
addon.local.gradle
35+
addon.local.gradle.kts
36+
addon.late.local.gradle
37+
addon.late.local.gradle.kts
38+
layout.json

CODEOWNERS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Any Github changes require admin approval
2+
/.github/** @GTNewHorizons/admin
3+

0 commit comments

Comments
 (0)