-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add devcontainer. * Remove docker test setup. Add global.json. * Update github CI workflows. * Use correct file name. * Use release build for anvil tests. * Add safe directory.
- Loading branch information
1 parent
b60e67e
commit 1cfe5ef
Showing
12 changed files
with
112 additions
and
211 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,25 @@ | ||
{ | ||
"name": "nwn.anvil", | ||
"build": { | ||
"dockerfile": "../dockerfile", | ||
"context": "../" | ||
}, | ||
"workspaceMount": "source=${localWorkspaceFolder},target=/workspaces/NWN.Anvil,type=bind", | ||
"workspaceFolder": "/workspaces/NWN.Anvil", | ||
"mounts": [ | ||
"source=${localWorkspaceFolder}/test_results,target=/nwn/home/anvil/PluginData/NWN.Anvil.TestRunner,type=bind" | ||
], | ||
"features": { | ||
"ghcr.io/devcontainers/features/dotnet:2": { | ||
"version": "8.0" | ||
}, | ||
"ghcr.io/rocker-org/devcontainer-features/apt-packages:1": { | ||
"packages": "curl,unzip,procps,git" | ||
} | ||
}, | ||
"appPort": ["5121:5121/udp"], | ||
"containerEnv": { | ||
"NWNX_DOTNET_ASSEMBLY": "/workspaces/NWN.Anvil/NWN.Anvil/bin/Debug/net8.0/NWN.Anvil", | ||
"ANVIL_ADD_PLUGIN_PATHS": "/workspaces/NWN.Anvil/NWN.Anvil.TestRunner/bin/Debug:/workspaces/NWN.Anvil/NWN.Anvil.Tests/bin/Debug" | ||
} | ||
} |
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
Oops, something went wrong.