-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #137 from doodlum/dev
0.7.0
- Loading branch information
Showing
93 changed files
with
4,506 additions
and
1,518 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 |
---|---|---|
@@ -1,63 +1,44 @@ | ||
name: build Community Shaders for dist | ||
name: build Community Shaders and addons | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: write | ||
|
||
env: | ||
VCPKG_COMMIT_ID: 9edb1b8e590cc086563301d735cae4b6e732d2d2 | ||
CMAKE_BUILD_TYPE: Release | ||
VCPKG_COMMIT_ID: d99b6930b920d85dd4e1edbac37ecb3f354185c0 | ||
|
||
jobs: | ||
compile: | ||
name: build plugin | ||
name: build plugin and addons | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: 'true' | ||
|
||
- uses: actions/cache@v3 | ||
with: | ||
path: | | ||
build | ||
key: ${{ runner.os }}-cmake-${{ hashFiles('CMakeLists.txt') }} | ||
restore-keys: | | ||
${{ runner.os }}-cmake- | ||
${{ runner.os }}- | ||
|
||
- uses: ilammy/[email protected] | ||
|
||
- uses: lukka/run-vcpkg@v11 | ||
with: | ||
vcpkgGitCommitId: ${{ env.VCPKG_COMMIT_ID }} | ||
|
||
- name: check the stamp file | ||
run: cmake -S . --preset=ALL --check-stamp-file "build\CMakeFiles\generate.stamp" | ||
|
||
- name: run cmake to build | ||
run: cmake --build build --config Release | ||
|
||
- name: copy build artifacts into place | ||
shell: bash | ||
run: | | ||
mkdir -p CommunityShaders/SKSE/Plugins | ||
cp -p build/release/*.dll CommunityShaders/SKSE/Plugins | ||
cp -p build/release/*.pdb CommunityShaders/SKSE/Plugins | ||
cp -rp package/* CommunityShaders/ | ||
- name: cmake configure | ||
run: cmake -S . --preset=ALL --check-stamp-file "build\CMakeFiles\generate.stamp" | ||
|
||
- name: 7zip compress it | ||
run: 7z a "CommunityShaders_${{ github.ref_name }}.7z" ./CommunityShaders | ||
- name: cmake build | ||
run: cmake --build build --config Release | ||
|
||
- name: create a tagged release and upload the archive | ||
uses: ncipollo/release-action@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
name: Community Shaders ${{ github.ref_name }} | ||
tag: ${{ github.ref_name }} | ||
draft: true | ||
artifacts: "CommunityShaders_${{ github.ref_name }}.7z" | ||
tag: ${{ github.ref_name }} | ||
artifacts: "${{ github.workspace }}/dist/*.7z" |
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,22 @@ | ||
# https://github.com/marketplace/actions/todo-to-issue#todo-to-issue-action | ||
name: "Run TODO to Issue" | ||
on: | ||
push: | ||
workflow_dispatch: | ||
inputs: | ||
MANUAL_COMMIT_REF: | ||
description: "The SHA of the commit to get the diff for" | ||
required: true | ||
MANUAL_BASE_REF: | ||
description: "By default, the commit entered above is compared to the one directly before it; to go back further, enter an earlier SHA here" | ||
required: false | ||
jobs: | ||
build: | ||
runs-on: "ubuntu-latest" | ||
steps: | ||
- uses: "actions/checkout@v3" | ||
- name: "TODO to Issue" | ||
uses: "alstr/todo-to-issue-action@master" | ||
env: | ||
MANUAL_COMMIT_REF: ${{ inputs.MANUAL_COMMIT_REF }} | ||
MANUAL_BASE_REF: ${{ inputs.MANUAL_BASE_REF }} |
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,12 @@ | ||
name: WIP | ||
on: | ||
pull_request: | ||
types: [opened, synchronize, reopened, edited] | ||
|
||
jobs: | ||
wip: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: wip/action@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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
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
Submodule CommonLibSSE-NG
updated
14 files
+1 −0 | CMakeLists.txt | |
+34 −4 | include/RE/B/BSFixedString.h | |
+17 −17 | include/RE/B/BSImagespaceShader.h | |
+22 −0 | include/RE/B/BSImagespaceShaderISTemporalAA.h | |
+151 −50 | include/RE/I/ImageSpaceManager.h | |
+22 −21 | include/RE/P/PlayerCamera.h | |
+69 −69 | include/RE/R/Renderer.h | |
+1 −0 | include/RE/Skyrim.h | |
+1 −1 | include/RE/V/VRWandEvent.h | |
+1 −0 | include/RE/V/Variable.h | |
+2 −1 | include/REL/Relocation.h | |
+10 −6 | include/SKSE/Impl/DInputAPI.h | |
+234 −0 | include/SKSE/Impl/WinAPI.h | |
+4 −4 | src/RE/N/NiAVObject.cpp |
Oops, something went wrong.