-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- complete rvff rewrite - sat tiling rewrite - map rivers - issue template - new ci - intercept update - logging - vcpkg.json
- Loading branch information
1 parent
b1fb3cf
commit f453c0a
Showing
31 changed files
with
1,528 additions
and
990 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: Bug Report | ||
description: File a bug report | ||
title: "[Bug]: " | ||
labels: ["bug"] | ||
assignees: | ||
- TheWillard | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
- type: checkboxes | ||
id: terms | ||
attributes: | ||
label: Loaded Mods | ||
description: Please confirm that all required mods are actually loaded. | ||
options: | ||
- label: I checked that `@grad_meh` is loaded | ||
required: true | ||
- label: I checked that `@cba_a3` is loaded | ||
required: true | ||
- label: I checked that `@intcept` is loaded | ||
required: true | ||
- type: checkboxes | ||
id: battleye | ||
attributes: | ||
label: Loaded Mods | ||
description: BattlEye can cause problems with grad_meh. Make sure it is disabled! | ||
options: | ||
- label: I disabled BattlEye | ||
required: true | ||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: What happened? | ||
description: Also tell us what did you expected to happen, and include the workshop links to relevant maps. | ||
placeholder: Tell us what you see! | ||
value: "A bug happened!" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: rpt | ||
attributes: | ||
label: RPT | ||
description: Please copy and paste the relevant RPT. You can find it in the following directory `%localappdata%\Arma 3` | ||
render: shell | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: grad_meh Logs | ||
description: Please copy and paste the relevant grad_meh log. You can find it in the following directory `%localappdata%\Arma 3` | ||
render: shell | ||
validations: | ||
required: true | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
name: C/C++ CI | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
env: | ||
VCPKG_COMMIT: cc97b4536ae749ec0e4f643488b600b217540fb3 | ||
VCPKG_DIR: C:/deps/vcpkg | ||
CMAKE_PRESET: ninja-msvc-vcpkg | ||
|
||
jobs: | ||
job_build_cpp: | ||
name: win | ||
runs-on: windows-latest | ||
|
||
steps: | ||
# Checkout | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
fetch-depth: 0 | ||
|
||
# Setup MSVC | ||
- uses: ilammy/msvc-dev-cmd@v1 | ||
with: | ||
vsversion: 2022 | ||
toolset: 14 | ||
|
||
# Install latest CMake | ||
- uses: lukka/get-cmake@latest | ||
|
||
- name: Create folder | ||
run: | | ||
mkdir ${{ env.VCPKG_DIR }} | ||
# Setup vcpkg and build deps | ||
- name: Restore artifacts, or Run vcpkg, build and cache artifacts | ||
uses: lukka/run-vcpkg@v11 | ||
id: runvcpkg | ||
with: | ||
vcpkgGitCommitId: ${{ env.VCPKG_COMMIT }} | ||
vcpkgDirectory: ${{ env.VCPKG_DIR }} | ||
|
||
- name: Run CMake consuming CMakePresets.json and vcpkg.json by mean of vcpkg. | ||
uses: lukka/run-cmake@v10 | ||
with: | ||
configurePreset: ninja-release-vcpkg-win | ||
buildPreset: ninja-msvc-vcpkg-release | ||
|
||
# Build the mod | ||
- uses: gruppe-adler/action-release-with-hemtt@v3 | ||
name: 'Build Mod with HEMTT' | ||
id: build | ||
|
||
# Upload the mod | ||
- uses: actions/upload-artifact@v1 | ||
with: | ||
name: ${{ steps.build.outputs.mod_name }} | ||
path: ${{ steps.build.outputs.release_path }} | ||
|
||
# zip it | ||
- uses: papeloto/action-zip@v1 | ||
with: | ||
files: \@${{ steps.build.outputs.mod_name }}/ | ||
dest: \@${{ steps.build.outputs.mod_name }}.zip | ||
|
||
# release it | ||
- uses: "marvinpinto/action-automatic-releases@latest" | ||
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') | ||
with: | ||
repo_token: "${{ secrets.GITHUB_TOKEN }}" | ||
prerelease: true | ||
files: | | ||
\@${{needs.job_build_cpp.outputs.modName}}.zip |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
[submodule "intercept"] | ||
path = intercept | ||
url = [email protected]:intercept/intercept.git | ||
url = https://github.com/intercept/intercept.git | ||
[submodule "src/rvff-cxx"] | ||
path = src/rvff-cxx | ||
url = https://github.com/arma-tools/rvff-cxx.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
{ | ||
"version": 5, | ||
"cmakeMinimumRequired": { | ||
"major": 3, | ||
"minor": 23, | ||
"patch": 0 | ||
}, | ||
"configurePresets": [ | ||
{ | ||
"name": "ninja-debug-vcpkg-win", | ||
"displayName": "Ninja/Windows/Debug/VCPKG Config", | ||
"description": "Ninja/Windows/Debug/VCPKG Config", | ||
"binaryDir": "${sourceDir}/builds/${presetName}", | ||
"generator": "Ninja", | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": "Debug", | ||
"CMAKE_TOOLCHAIN_FILE": { | ||
"type": "FILEPATH", | ||
"value": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake" | ||
}, | ||
"CMAKE_INSTALL_PREFIX": { | ||
"type": "FILEPATH", | ||
"value": "${sourceDir}/install" | ||
}, | ||
"USE_64BIT_BUILD": true, | ||
"VCPKG_TARGET_TRIPLET": "x64-windows-static", | ||
"CMAKE_C_COMPILER": "cl", | ||
"CMAKE_CXX_COMPILER": "cl" | ||
}, | ||
"condition": { | ||
"type": "equals", | ||
"lhs": "${hostSystemName}", | ||
"rhs": "Windows" | ||
} | ||
}, | ||
{ | ||
"name": "ninja-release-vcpkg-win", | ||
"displayName": "Ninja/Windows/Release/VCPKG Config", | ||
"inherits": "ninja-debug-vcpkg-win", | ||
"description": "Ninja/Windows/Release/VCPKG Config", | ||
"generator": "Ninja", | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": "Release" | ||
} | ||
} | ||
], | ||
"buildPresets": [ | ||
{ | ||
"name": "ninja-msvc-vcpkg-debug", | ||
"configurePreset": "ninja-debug-vcpkg-win", | ||
"displayName": "Build ninja-msvc-vcpkg (Debug)", | ||
"description": "Build ninja-msvc-vcpkg (Debug) Configurations", | ||
"targets": "install", | ||
"configuration": "Debug" | ||
}, | ||
{ | ||
"name": "ninja-msvc-vcpkg-release", | ||
"configurePreset": "ninja-release-vcpkg-win", | ||
"displayName": "Build ninja-msvc-vcpkg (Release)", | ||
"description": "Build ninja-msvc-vcpkg Configurations", | ||
"targets": "install", | ||
"configuration": "Release" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#define MAJOR 1 | ||
#define MINOR 0 | ||
#define PATCHLVL 0 | ||
#define BUILD 0 | ||
#define MAJOR 0 | ||
#define MINOR 7 | ||
#define PATCHLVL 1 | ||
#define BUILD 8 |
Oops, something went wrong.