From 0224fae86a7930b5557b699ac89f4b840a52f2d6 Mon Sep 17 00:00:00 2001 From: noecald Date: Wed, 12 Aug 2020 17:23:27 -0700 Subject: [PATCH 01/38] adding github action --- .github/workflows/rich-nav-dev.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/rich-nav-dev.yml diff --git a/.github/workflows/rich-nav-dev.yml b/.github/workflows/rich-nav-dev.yml new file mode 100644 index 0000000..fb15aa2 --- /dev/null +++ b/.github/workflows/rich-nav-dev.yml @@ -0,0 +1,19 @@ +name: "Rich Navigation Indexing" +on: + pull_request: + push: + branches: + - master + +jobs: + richnav: + runs-on: windows-latest + steps: + - uses: actions/checkout@v2 + - name: Use Node.js + uses: actions/setup-node@v1 + - uses: microsoft/RichCodeNavIndexer@v0 + with: + languages: 'csharp,typescript,java,cpp' + environment: 'development' + continue-on-error: true From d30f32d2e3b684ab52264c3979d216980365a398 Mon Sep 17 00:00:00 2001 From: noecald Date: Wed, 12 Aug 2020 17:29:49 -0700 Subject: [PATCH 02/38] add version .1 --- .github/workflows/rich-nav-dev.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rich-nav-dev.yml b/.github/workflows/rich-nav-dev.yml index fb15aa2..a0c5f82 100644 --- a/.github/workflows/rich-nav-dev.yml +++ b/.github/workflows/rich-nav-dev.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v2 - name: Use Node.js uses: actions/setup-node@v1 - - uses: microsoft/RichCodeNavIndexer@v0 + - uses: microsoft/RichCodeNavIndexer@v0.1 with: languages: 'csharp,typescript,java,cpp' environment: 'development' From 57417656514ef31547ff63b0f80f0197f9543fa3 Mon Sep 17 00:00:00 2001 From: Noelle Caldwell Date: Wed, 12 Aug 2020 17:53:23 -0700 Subject: [PATCH 03/38] Update .github/workflows/rich-nav-dev.yml Co-authored-by: Andrew Arnott --- .github/workflows/rich-nav-dev.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rich-nav-dev.yml b/.github/workflows/rich-nav-dev.yml index a0c5f82..b9749bc 100644 --- a/.github/workflows/rich-nav-dev.yml +++ b/.github/workflows/rich-nav-dev.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v2 - name: Use Node.js uses: actions/setup-node@v1 - - uses: microsoft/RichCodeNavIndexer@v0.1 + - uses: microsoft/RichCodeNavIndexer@diagnose with: languages: 'csharp,typescript,java,cpp' environment: 'development' From 03c18d21a192a52b80a265ebe9bdf2f72b983140 Mon Sep 17 00:00:00 2001 From: noecald Date: Thu, 13 Aug 2020 10:22:43 -0700 Subject: [PATCH 04/38] remove node step --- .github/workflows/rich-nav-dev.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/rich-nav-dev.yml b/.github/workflows/rich-nav-dev.yml index a0c5f82..db1cd04 100644 --- a/.github/workflows/rich-nav-dev.yml +++ b/.github/workflows/rich-nav-dev.yml @@ -10,8 +10,6 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@v2 - - name: Use Node.js - uses: actions/setup-node@v1 - uses: microsoft/RichCodeNavIndexer@v0.1 with: languages: 'csharp,typescript,java,cpp' From 0df296f73a190bf6c33fb8165a423a505d8357a3 Mon Sep 17 00:00:00 2001 From: noecald Date: Thu, 13 Aug 2020 10:40:54 -0700 Subject: [PATCH 05/38] change to prod environment --- .github/workflows/rich-nav-dev.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/rich-nav-dev.yml b/.github/workflows/rich-nav-dev.yml index 415e213..e0f84e4 100644 --- a/.github/workflows/rich-nav-dev.yml +++ b/.github/workflows/rich-nav-dev.yml @@ -10,10 +10,8 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@v2 - - run: node -v - - run: pwd - uses: microsoft/RichCodeNavIndexer@diagnose with: languages: 'csharp,typescript,java,cpp' - environment: 'development' + environment: 'production' continue-on-error: true From 9581a81ed1f68af2ab54486373527e197f942bbe Mon Sep 17 00:00:00 2001 From: noecald Date: Thu, 13 Aug 2020 15:21:22 -0700 Subject: [PATCH 06/38] updated github yml --- .github/workflows/{rich-nav-dev.yml => rich-nav-prod.yml} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename .github/workflows/{rich-nav-dev.yml => rich-nav-prod.yml} (85%) diff --git a/.github/workflows/rich-nav-dev.yml b/.github/workflows/rich-nav-prod.yml similarity index 85% rename from .github/workflows/rich-nav-dev.yml rename to .github/workflows/rich-nav-prod.yml index e0f84e4..15e96d3 100644 --- a/.github/workflows/rich-nav-dev.yml +++ b/.github/workflows/rich-nav-prod.yml @@ -10,7 +10,7 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@v2 - - uses: microsoft/RichCodeNavIndexer@diagnose + - uses: microsoft/RichCodeNavIndexer@v0.1 with: languages: 'csharp,typescript,java,cpp' environment: 'production' From 7d85aae554680ad5c5349c30ae8eb89f11a160ce Mon Sep 17 00:00:00 2001 From: noecald Date: Thu, 13 Aug 2020 15:22:49 -0700 Subject: [PATCH 07/38] point to specific version --- .github/workflows/rich-nav-prod.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rich-nav-prod.yml b/.github/workflows/rich-nav-prod.yml index 15e96d3..76045c8 100644 --- a/.github/workflows/rich-nav-prod.yml +++ b/.github/workflows/rich-nav-prod.yml @@ -10,7 +10,7 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@v2 - - uses: microsoft/RichCodeNavIndexer@v0.1 + - uses: microsoft/RichCodeNavIndexer@v0.1.4 with: languages: 'csharp,typescript,java,cpp' environment: 'production' From bc10f0971ae1af542f9d997d70e5c2a4b751ac36 Mon Sep 17 00:00:00 2001 From: noecald Date: Thu, 13 Aug 2020 15:35:20 -0700 Subject: [PATCH 08/38] test pointing to branch version only --- .github/workflows/rich-nav-prod.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rich-nav-prod.yml b/.github/workflows/rich-nav-prod.yml index 76045c8..15e96d3 100644 --- a/.github/workflows/rich-nav-prod.yml +++ b/.github/workflows/rich-nav-prod.yml @@ -10,7 +10,7 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@v2 - - uses: microsoft/RichCodeNavIndexer@v0.1.4 + - uses: microsoft/RichCodeNavIndexer@v0.1 with: languages: 'csharp,typescript,java,cpp' environment: 'production' From f14f9157237ad132e0a85a4b3a4f49976d8c9fd3 Mon Sep 17 00:00:00 2001 From: noecald Date: Fri, 14 Aug 2020 09:26:53 -0700 Subject: [PATCH 09/38] test prod update --- azure-pipelines-prod.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/azure-pipelines-prod.yml b/azure-pipelines-prod.yml index ace2458..697d42d 100644 --- a/azure-pipelines-prod.yml +++ b/azure-pipelines-prod.yml @@ -19,11 +19,6 @@ queue: timeoutInMinutes: 60 steps: -- task: NodeTool@0 - displayName: 'Use Node 10.x' - inputs: - versionSpec: 10.x - - task: MS-RichCodeNav.Indexer.build-task.RichCodeNavIndexer@0 displayName: Rich Code Navigation Upload to Production inputs: @@ -31,6 +26,6 @@ steps: languages: 'csharp,typescript,java,cpp' githubServiceConnection: 'xuachen' environment: production - isPrivateFeed: false + richNavLogOutputDirectory: $(Build.SourcesDirectory)/artifacts/bin continueOnError: true From f0d1d16ae685e44d80f2acdfd84eb051fba6143c Mon Sep 17 00:00:00 2001 From: Tina Chen Date: Tue, 8 Sep 2020 12:05:18 -0700 Subject: [PATCH 10/38] Change branch from master to main --- azure-pipelines-dev.yml | 4 ++-- azure-pipelines-int.yml | 4 ++-- azure-pipelines-prod.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/azure-pipelines-dev.yml b/azure-pipelines-dev.yml index 71346bd..de13652 100644 --- a/azure-pipelines-dev.yml +++ b/azure-pipelines-dev.yml @@ -2,7 +2,7 @@ trigger: branches: - include: ["master", "*"] + include: ["main", "*"] paths: exclude: ["doc", "*.md"] @@ -11,7 +11,7 @@ schedules: displayName: Weekly Development Environment Validation Run branches: include: - - master + - main always: true queue: diff --git a/azure-pipelines-int.yml b/azure-pipelines-int.yml index a4fc937..c0fc448 100644 --- a/azure-pipelines-int.yml +++ b/azure-pipelines-int.yml @@ -2,7 +2,7 @@ trigger: branches: - include: ["master", "*"] + include: ["main", "*"] paths: exclude: ["doc", "*.md"] @@ -11,7 +11,7 @@ schedules: displayName: Weekly Staging Environment Validation Run branches: include: - - master + - main always: true queue: diff --git a/azure-pipelines-prod.yml b/azure-pipelines-prod.yml index ace2458..cac03d0 100644 --- a/azure-pipelines-prod.yml +++ b/azure-pipelines-prod.yml @@ -2,7 +2,7 @@ trigger: branches: - include: ["master", "*"] + include: ["main", "*"] paths: exclude: ["doc", "*.md"] @@ -11,7 +11,7 @@ schedules: displayName: Weekly Production Environment Validation Run branches: include: - - master + - main always: true queue: From 3423ff5d3022a4d6869f060a52188b48dd67090d Mon Sep 17 00:00:00 2001 From: noecald Date: Tue, 13 Oct 2020 14:30:23 -0700 Subject: [PATCH 11/38] test deploy for 10/13/2020 --- .github/workflows/rich-nav-dev.yml | 17 +++++++++++++++++ .github/workflows/rich-nav-int.yml | 17 +++++++++++++++++ .github/workflows/rich-nav-prod.yml | 2 +- azure-pipelines-dev.yml | 2 +- 4 files changed, 36 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/rich-nav-dev.yml create mode 100644 .github/workflows/rich-nav-int.yml diff --git a/.github/workflows/rich-nav-dev.yml b/.github/workflows/rich-nav-dev.yml new file mode 100644 index 0000000..110fc82 --- /dev/null +++ b/.github/workflows/rich-nav-dev.yml @@ -0,0 +1,17 @@ +name: "Rich Navigation Indexing" +on: + pull_request: + push: + branches: + - master + +jobs: + richnav: + runs-on: windows-latest + steps: + - uses: actions/checkout@v2 + - uses: microsoft/RichCodeNavIndexer@v0 + with: + languages: 'csharp,typescript,java,cpp' + environment: 'development' + continue-on-error: true diff --git a/.github/workflows/rich-nav-int.yml b/.github/workflows/rich-nav-int.yml new file mode 100644 index 0000000..51a841d --- /dev/null +++ b/.github/workflows/rich-nav-int.yml @@ -0,0 +1,17 @@ +name: "Rich Navigation Indexing" +on: + pull_request: + push: + branches: + - master + +jobs: + richnav: + runs-on: windows-latest + steps: + - uses: actions/checkout@v2 + - uses: microsoft/RichCodeNavIndexer@v0 + with: + languages: 'csharp,typescript,java,cpp' + environment: 'staging' + continue-on-error: true diff --git a/.github/workflows/rich-nav-prod.yml b/.github/workflows/rich-nav-prod.yml index 15e96d3..6247d9e 100644 --- a/.github/workflows/rich-nav-prod.yml +++ b/.github/workflows/rich-nav-prod.yml @@ -10,7 +10,7 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@v2 - - uses: microsoft/RichCodeNavIndexer@v0.1 + - uses: microsoft/RichCodeNavIndexer@v0 with: languages: 'csharp,typescript,java,cpp' environment: 'production' diff --git a/azure-pipelines-dev.yml b/azure-pipelines-dev.yml index 71346bd..80a5c4b 100644 --- a/azure-pipelines-dev.yml +++ b/azure-pipelines-dev.yml @@ -32,6 +32,6 @@ steps: githubServiceConnection: 'xuachen' nugetFeed: 'https://devdiv.pkgs.visualstudio.com/Personal/_packaging/richnav/nuget/v3/index.json' isPrivateFeed: true - nugetVersion: '0.1.1617-alpha' + nugetVersion: '0.1.1761-alpha' environment: development continueOnError: true From a043b65dd498b297d0fc067cbb477ab32a80501c Mon Sep 17 00:00:00 2001 From: noecald Date: Tue, 13 Oct 2020 14:37:47 -0700 Subject: [PATCH 12/38] update version for GitHub Actions --- .github/workflows/rich-nav-dev.yml | 2 +- .github/workflows/rich-nav-int.yml | 2 +- .github/workflows/rich-nav-prod.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rich-nav-dev.yml b/.github/workflows/rich-nav-dev.yml index 110fc82..db1cd04 100644 --- a/.github/workflows/rich-nav-dev.yml +++ b/.github/workflows/rich-nav-dev.yml @@ -10,7 +10,7 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@v2 - - uses: microsoft/RichCodeNavIndexer@v0 + - uses: microsoft/RichCodeNavIndexer@v0.1 with: languages: 'csharp,typescript,java,cpp' environment: 'development' diff --git a/.github/workflows/rich-nav-int.yml b/.github/workflows/rich-nav-int.yml index 51a841d..ddec8e4 100644 --- a/.github/workflows/rich-nav-int.yml +++ b/.github/workflows/rich-nav-int.yml @@ -10,7 +10,7 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@v2 - - uses: microsoft/RichCodeNavIndexer@v0 + - uses: microsoft/RichCodeNavIndexer@v0.1 with: languages: 'csharp,typescript,java,cpp' environment: 'staging' diff --git a/.github/workflows/rich-nav-prod.yml b/.github/workflows/rich-nav-prod.yml index 6247d9e..15e96d3 100644 --- a/.github/workflows/rich-nav-prod.yml +++ b/.github/workflows/rich-nav-prod.yml @@ -10,7 +10,7 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@v2 - - uses: microsoft/RichCodeNavIndexer@v0 + - uses: microsoft/RichCodeNavIndexer@v0.1 with: languages: 'csharp,typescript,java,cpp' environment: 'production' From 46f4b5aa4e37b85b2f3f2a93a39949668a731490 Mon Sep 17 00:00:00 2001 From: noecald Date: Tue, 13 Oct 2020 14:51:10 -0700 Subject: [PATCH 13/38] update name to distinguish between environments --- .github/workflows/rich-nav-dev.yml | 2 +- .github/workflows/rich-nav-int.yml | 2 +- .github/workflows/rich-nav-prod.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rich-nav-dev.yml b/.github/workflows/rich-nav-dev.yml index db1cd04..307ea92 100644 --- a/.github/workflows/rich-nav-dev.yml +++ b/.github/workflows/rich-nav-dev.yml @@ -1,4 +1,4 @@ -name: "Rich Navigation Indexing" +name: "Rich Navigation Indexing - Dev" on: pull_request: push: diff --git a/.github/workflows/rich-nav-int.yml b/.github/workflows/rich-nav-int.yml index ddec8e4..1139fc4 100644 --- a/.github/workflows/rich-nav-int.yml +++ b/.github/workflows/rich-nav-int.yml @@ -1,4 +1,4 @@ -name: "Rich Navigation Indexing" +name: "Rich Navigation Indexing - Int" on: pull_request: push: diff --git a/.github/workflows/rich-nav-prod.yml b/.github/workflows/rich-nav-prod.yml index 15e96d3..26f5735 100644 --- a/.github/workflows/rich-nav-prod.yml +++ b/.github/workflows/rich-nav-prod.yml @@ -1,4 +1,4 @@ -name: "Rich Navigation Indexing" +name: "Rich Navigation Indexing - Prod" on: pull_request: push: From 6cd4f24587d682da19cb866734ed81df4913765f Mon Sep 17 00:00:00 2001 From: noecald Date: Tue, 13 Oct 2020 15:02:56 -0700 Subject: [PATCH 14/38] remove specific package from azdo dev pipeline --- azure-pipelines-dev.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/azure-pipelines-dev.yml b/azure-pipelines-dev.yml index 80a5c4b..4204a7d 100644 --- a/azure-pipelines-dev.yml +++ b/azure-pipelines-dev.yml @@ -31,7 +31,5 @@ steps: languages: 'csharp,typescript,java,cpp' githubServiceConnection: 'xuachen' nugetFeed: 'https://devdiv.pkgs.visualstudio.com/Personal/_packaging/richnav/nuget/v3/index.json' - isPrivateFeed: true - nugetVersion: '0.1.1761-alpha' environment: development continueOnError: true From 559ffe7850e0a96eef9a3eb9b9007d68bc79573f Mon Sep 17 00:00:00 2001 From: noecald Date: Tue, 13 Oct 2020 15:19:52 -0700 Subject: [PATCH 15/38] specify isPrivateFeed for dev --- azure-pipelines-dev.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/azure-pipelines-dev.yml b/azure-pipelines-dev.yml index 4204a7d..7b455c9 100644 --- a/azure-pipelines-dev.yml +++ b/azure-pipelines-dev.yml @@ -31,5 +31,6 @@ steps: languages: 'csharp,typescript,java,cpp' githubServiceConnection: 'xuachen' nugetFeed: 'https://devdiv.pkgs.visualstudio.com/Personal/_packaging/richnav/nuget/v3/index.json' + isPrivateFeed: true environment: development continueOnError: true From c08fe1ee17de81f86bd80663cb5a774bafa3c450 Mon Sep 17 00:00:00 2001 From: noecald Date: Tue, 13 Oct 2020 17:12:33 -0700 Subject: [PATCH 16/38] added comment to test int --- csharp/src/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/src/Program.cs b/csharp/src/Program.cs index 0613f9c..50947ae 100644 --- a/csharp/src/Program.cs +++ b/csharp/src/Program.cs @@ -6,7 +6,7 @@ class Program { static void Main(string[] args) { - Interactive block = new GameObject(10, 10); + Interactive block = new GameObject(10, 10); // comment block.interact(); } } From 2b2d932d8e0f882a972d4bfa23f28df74d7476f6 Mon Sep 17 00:00:00 2001 From: noecald Date: Wed, 14 Oct 2020 09:56:05 -0700 Subject: [PATCH 17/38] added comment --- java/src/main/java/com/test/sort/App.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/src/main/java/com/test/sort/App.java b/java/src/main/java/com/test/sort/App.java index f72a225..7c9c99a 100644 --- a/java/src/main/java/com/test/sort/App.java +++ b/java/src/main/java/com/test/sort/App.java @@ -18,7 +18,7 @@ public > T[] sort(T[] array) { } public static void main(String[] args) { - SomeSort pancakeSort = new SomeSort(); + SomeSort pancakeSort = new SomeSort(); // comment pancakeSort.sort(arr); } } From 0fe4b81f29bc708cbd1a8f0e03a23ffda5edb5de Mon Sep 17 00:00:00 2001 From: Bertan Aygun Date: Thu, 22 Oct 2020 17:02:03 -0700 Subject: [PATCH 18/38] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dc12f2e..0ce0756 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Rich Code Navigation Indexed Code Samples -This is a sample code base used to validate Rich Code Nav indexing against DEV, INT, and PROD environments. +This is a sample code base used to validate Rich Code Nav indexing against DEV, INT, and PROD environments. ## Validation steps 1. Push any commit to any branch to trigger the build, typically a trivial comment change. From bf1b0c2fe0f5c89f0cc33a4b18a43cf1eeb6423c Mon Sep 17 00:00:00 2001 From: Bertan Aygun Date: Thu, 22 Oct 2020 19:14:05 -0700 Subject: [PATCH 19/38] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0ce0756..dc12f2e 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Rich Code Navigation Indexed Code Samples -This is a sample code base used to validate Rich Code Nav indexing against DEV, INT, and PROD environments. +This is a sample code base used to validate Rich Code Nav indexing against DEV, INT, and PROD environments. ## Validation steps 1. Push any commit to any branch to trigger the build, typically a trivial comment change. From 906241ab74bd7e87ad5061e3751fe2f8a7f94962 Mon Sep 17 00:00:00 2001 From: noecald Date: Mon, 23 Nov 2020 12:51:04 -0800 Subject: [PATCH 20/38] test update for deployment 11/23/2020 --- java/src/main/java/com/test/sort/App.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java/src/main/java/com/test/sort/App.java b/java/src/main/java/com/test/sort/App.java index 7c9c99a..0d1f74e 100644 --- a/java/src/main/java/com/test/sort/App.java +++ b/java/src/main/java/com/test/sort/App.java @@ -6,9 +6,9 @@ */ public class App { - public static void main( String[] args ) + public static void main(String[] args) { - System.out.println( "Hello World!" ); + System.out.println("Hello World!"); } } From 36d321633aeeb3c0d2fc0626494f7a8965322ee5 Mon Sep 17 00:00:00 2001 From: noecald Date: Mon, 23 Nov 2020 13:43:14 -0800 Subject: [PATCH 21/38] remove github actions --- .github/workflows/rich-nav-dev.yml | 17 ----------------- .github/workflows/rich-nav-int.yml | 17 ----------------- .github/workflows/rich-nav-prod.yml | 17 ----------------- 3 files changed, 51 deletions(-) delete mode 100644 .github/workflows/rich-nav-dev.yml delete mode 100644 .github/workflows/rich-nav-int.yml delete mode 100644 .github/workflows/rich-nav-prod.yml diff --git a/.github/workflows/rich-nav-dev.yml b/.github/workflows/rich-nav-dev.yml deleted file mode 100644 index 307ea92..0000000 --- a/.github/workflows/rich-nav-dev.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: "Rich Navigation Indexing - Dev" -on: - pull_request: - push: - branches: - - master - -jobs: - richnav: - runs-on: windows-latest - steps: - - uses: actions/checkout@v2 - - uses: microsoft/RichCodeNavIndexer@v0.1 - with: - languages: 'csharp,typescript,java,cpp' - environment: 'development' - continue-on-error: true diff --git a/.github/workflows/rich-nav-int.yml b/.github/workflows/rich-nav-int.yml deleted file mode 100644 index 1139fc4..0000000 --- a/.github/workflows/rich-nav-int.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: "Rich Navigation Indexing - Int" -on: - pull_request: - push: - branches: - - master - -jobs: - richnav: - runs-on: windows-latest - steps: - - uses: actions/checkout@v2 - - uses: microsoft/RichCodeNavIndexer@v0.1 - with: - languages: 'csharp,typescript,java,cpp' - environment: 'staging' - continue-on-error: true diff --git a/.github/workflows/rich-nav-prod.yml b/.github/workflows/rich-nav-prod.yml deleted file mode 100644 index 26f5735..0000000 --- a/.github/workflows/rich-nav-prod.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: "Rich Navigation Indexing - Prod" -on: - pull_request: - push: - branches: - - master - -jobs: - richnav: - runs-on: windows-latest - steps: - - uses: actions/checkout@v2 - - uses: microsoft/RichCodeNavIndexer@v0.1 - with: - languages: 'csharp,typescript,java,cpp' - environment: 'production' - continue-on-error: true From aa81416b1a4fd59b4af09dc88b8f5e13c25e22cc Mon Sep 17 00:00:00 2001 From: noecald Date: Mon, 23 Nov 2020 14:43:19 -0800 Subject: [PATCH 22/38] comment for deployment testing --- csharp/src/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/src/Program.cs b/csharp/src/Program.cs index 50947ae..d8ec6bf 100644 --- a/csharp/src/Program.cs +++ b/csharp/src/Program.cs @@ -6,7 +6,7 @@ class Program { static void Main(string[] args) { - Interactive block = new GameObject(10, 10); // comment + Interactive block = new GameObject(10, 10); // comment! block.interact(); } } From 45e841d7ce3578fd573f35d496e08898058bff29 Mon Sep 17 00:00:00 2001 From: noecald Date: Mon, 23 Nov 2020 15:52:00 -0800 Subject: [PATCH 23/38] comment for deployment testing --- csharp/src/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/src/Program.cs b/csharp/src/Program.cs index d8ec6bf..50947ae 100644 --- a/csharp/src/Program.cs +++ b/csharp/src/Program.cs @@ -6,7 +6,7 @@ class Program { static void Main(string[] args) { - Interactive block = new GameObject(10, 10); // comment! + Interactive block = new GameObject(10, 10); // comment block.interact(); } } From e5bbe9ddda851bf4dfd3c922c6bd48e95766f8e2 Mon Sep 17 00:00:00 2001 From: noecald Date: Tue, 24 Nov 2020 15:14:22 -0800 Subject: [PATCH 24/38] test for int deployment --- csharp/src/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/src/Program.cs b/csharp/src/Program.cs index 50947ae..d8ec6bf 100644 --- a/csharp/src/Program.cs +++ b/csharp/src/Program.cs @@ -6,7 +6,7 @@ class Program { static void Main(string[] args) { - Interactive block = new GameObject(10, 10); // comment + Interactive block = new GameObject(10, 10); // comment! block.interact(); } } From 3f8faa78bc7a176b4c492d1e9eec80a01aece36e Mon Sep 17 00:00:00 2001 From: noecald Date: Wed, 10 Mar 2021 15:39:22 -0800 Subject: [PATCH 25/38] updated comment for 3/10/2021 deployment, test int --- csharp/src/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/src/Program.cs b/csharp/src/Program.cs index d8ec6bf..9ba22a1 100644 --- a/csharp/src/Program.cs +++ b/csharp/src/Program.cs @@ -6,7 +6,7 @@ class Program { static void Main(string[] args) { - Interactive block = new GameObject(10, 10); // comment! + Interactive block = new GameObject(10, 10); // comment!! block.interact(); } } From 289710baede1b3c902d3d7572149409a121e75a3 Mon Sep 17 00:00:00 2001 From: noecald Date: Tue, 20 Apr 2021 12:48:51 -0700 Subject: [PATCH 26/38] update comment for deployment testing 4/20/21 --- csharp/src/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/src/Program.cs b/csharp/src/Program.cs index 9ba22a1..50947ae 100644 --- a/csharp/src/Program.cs +++ b/csharp/src/Program.cs @@ -6,7 +6,7 @@ class Program { static void Main(string[] args) { - Interactive block = new GameObject(10, 10); // comment!! + Interactive block = new GameObject(10, 10); // comment block.interact(); } } From 859484b02f09abd6e369d1b9e1553fbfc01392bb Mon Sep 17 00:00:00 2001 From: noecald Date: Wed, 21 Apr 2021 07:40:54 -0700 Subject: [PATCH 27/38] remove log dir --- azure-pipelines-prod.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines-prod.yml b/azure-pipelines-prod.yml index 901b241..e34d298 100644 --- a/azure-pipelines-prod.yml +++ b/azure-pipelines-prod.yml @@ -26,6 +26,6 @@ steps: languages: 'csharp,typescript,java,cpp' githubServiceConnection: 'xuachen' environment: production - richNavLogOutputDirectory: $(Build.SourcesDirectory)/artifacts/bin + isPrivateFeed: false continueOnError: true From dca5e6657e5b6b58ddc4d1bbc9ec6f368f5eeb0e Mon Sep 17 00:00:00 2001 From: noecald Date: Wed, 21 Apr 2021 11:56:58 -0700 Subject: [PATCH 28/38] updated comment --- csharp/src/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/src/Program.cs b/csharp/src/Program.cs index 50947ae..d8ec6bf 100644 --- a/csharp/src/Program.cs +++ b/csharp/src/Program.cs @@ -6,7 +6,7 @@ class Program { static void Main(string[] args) { - Interactive block = new GameObject(10, 10); // comment + Interactive block = new GameObject(10, 10); // comment! block.interact(); } } From 0fd7ef56e1fce04be592da3d7a06bc8b02a3bfaa Mon Sep 17 00:00:00 2001 From: noecald Date: Wed, 21 Apr 2021 14:24:00 -0700 Subject: [PATCH 29/38] update dev pipeline --- azure-pipelines-dev.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/azure-pipelines-dev.yml b/azure-pipelines-dev.yml index 8d06d78..6074b17 100644 --- a/azure-pipelines-dev.yml +++ b/azure-pipelines-dev.yml @@ -30,7 +30,6 @@ steps: serviceConnection: 'richCodeNav-Token-Dev' languages: 'csharp,typescript,java,cpp' githubServiceConnection: 'xuachen' - nugetFeed: 'https://devdiv.pkgs.visualstudio.com/Personal/_packaging/richnav/nuget/v3/index.json' isPrivateFeed: true environment: development continueOnError: true From 928079a974c21b9512169543a5d3232d09719ed6 Mon Sep 17 00:00:00 2001 From: noecald Date: Wed, 21 Apr 2021 19:21:24 -0700 Subject: [PATCH 30/38] add package.json file --- typescript/package.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 typescript/package.json diff --git a/typescript/package.json b/typescript/package.json new file mode 100644 index 0000000..f0755ed --- /dev/null +++ b/typescript/package.json @@ -0,0 +1,11 @@ +{ + "name": "typescript", + "version": "1.0.0", + "description": "sample project for deployment testing RichNav for TypeScript ", + "main": "App.ts", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "author": "", + "license": "ISC" +} From 8b5d0bf623d76676f2586ff055f95196de2ffa91 Mon Sep 17 00:00:00 2001 From: noecald Date: Tue, 4 May 2021 11:56:43 -0700 Subject: [PATCH 31/38] testing new int diagnostic endpoint --- csharp/src/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/src/Program.cs b/csharp/src/Program.cs index d8ec6bf..9ba22a1 100644 --- a/csharp/src/Program.cs +++ b/csharp/src/Program.cs @@ -6,7 +6,7 @@ class Program { static void Main(string[] args) { - Interactive block = new GameObject(10, 10); // comment! + Interactive block = new GameObject(10, 10); // comment!! block.interact(); } } From 45d36e3c82b3979cfe77f744598ed33c27801180 Mon Sep 17 00:00:00 2001 From: noecald Date: Mon, 21 Jun 2021 17:59:31 -0700 Subject: [PATCH 32/38] removed unnecessary using --- csharp/src/GameObject.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/csharp/src/GameObject.cs b/csharp/src/GameObject.cs index 9a2a382..f34bec9 100644 --- a/csharp/src/GameObject.cs +++ b/csharp/src/GameObject.cs @@ -1,5 +1,3 @@ -using System; - namespace game { class GameObject: Drawable, Interactive From a3d6a88c0bb68c8997e9f9b8f67f6982d24d029e Mon Sep 17 00:00:00 2001 From: noecald Date: Wed, 23 Jun 2021 15:51:29 -0700 Subject: [PATCH 33/38] adding github workflow --- .github/workflows/codextest.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/codextest.yml diff --git a/.github/workflows/codextest.yml b/.github/workflows/codextest.yml new file mode 100644 index 0000000..ec59e5b --- /dev/null +++ b/.github/workflows/codextest.yml @@ -0,0 +1,29 @@ +# This is a basic workflow to help you get started with Actions + +name: CI + +# Controls when the action will run. +on: + pull_request: + push: + branches: + - main + workflow_dispatch: + +jobs: + build: + runs-on: windows-latest + + steps: + - name: Setup Java JDK + uses: actions/setup-java@v2.1.0 + with: + java-version: '11' + distribution: 'zulu' + - uses: actions/checkout@v2 + - uses: jepetty/debug-action@master + - name: Rich Code Nav Indexer + - uses: microsoft/RichCodeNavIndexer@v0.1.11 + with: + languages: javascript,cpp,csharp,java + environment: development \ No newline at end of file From 8532abd379dd9c83c2ad4f1da836b40fe9300e29 Mon Sep 17 00:00:00 2001 From: noecald Date: Wed, 23 Jun 2021 15:53:17 -0700 Subject: [PATCH 34/38] remove extra hyphen --- .github/workflows/codextest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codextest.yml b/.github/workflows/codextest.yml index ec59e5b..de5c23b 100644 --- a/.github/workflows/codextest.yml +++ b/.github/workflows/codextest.yml @@ -23,7 +23,7 @@ jobs: - uses: actions/checkout@v2 - uses: jepetty/debug-action@master - name: Rich Code Nav Indexer - - uses: microsoft/RichCodeNavIndexer@v0.1.11 + uses: microsoft/RichCodeNavIndexer@v0.1.11 with: languages: javascript,cpp,csharp,java environment: development \ No newline at end of file From f9a2e856b21c956a92920f8d29ac19db35e9bc2e Mon Sep 17 00:00:00 2001 From: noecald Date: Wed, 23 Jun 2021 16:20:54 -0700 Subject: [PATCH 35/38] point to dev nugetfeed --- .github/workflows/codextest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codextest.yml b/.github/workflows/codextest.yml index de5c23b..faf90d7 100644 --- a/.github/workflows/codextest.yml +++ b/.github/workflows/codextest.yml @@ -26,4 +26,4 @@ jobs: uses: microsoft/RichCodeNavIndexer@v0.1.11 with: languages: javascript,cpp,csharp,java - environment: development \ No newline at end of file + environment: production \ No newline at end of file From 2e84e4bb405d9779068e68e144964c66b4aaef45 Mon Sep 17 00:00:00 2001 From: noecald Date: Thu, 5 Aug 2021 13:24:06 -0700 Subject: [PATCH 36/38] testing typescript 15 --- .github/workflows/codextest.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/codextest.yml b/.github/workflows/codextest.yml index faf90d7..0047176 100644 --- a/.github/workflows/codextest.yml +++ b/.github/workflows/codextest.yml @@ -8,7 +8,6 @@ on: push: branches: - main - workflow_dispatch: jobs: build: @@ -21,9 +20,15 @@ jobs: java-version: '11' distribution: 'zulu' - uses: actions/checkout@v2 - - uses: jepetty/debug-action@master + # - uses: jepetty/debug-action@master + - uses: actions/setup-node@v2 + with: + node-version: 14 - name: Rich Code Nav Indexer uses: microsoft/RichCodeNavIndexer@v0.1.11 with: languages: javascript,cpp,csharp,java - environment: production \ No newline at end of file + environment: production + repo-token: ${{ secrets.GITHUB_TOKEN }} + typescriptVersion: 0.6.0-next.15 + From 2059516ebd888e10207de4c0f5267cbc155ae363 Mon Sep 17 00:00:00 2001 From: noecald Date: Thu, 5 Aug 2021 13:28:01 -0700 Subject: [PATCH 37/38] run on typescript only --- .github/workflows/codextest.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/codextest.yml b/.github/workflows/codextest.yml index 0047176..932e7f3 100644 --- a/.github/workflows/codextest.yml +++ b/.github/workflows/codextest.yml @@ -14,11 +14,11 @@ jobs: runs-on: windows-latest steps: - - name: Setup Java JDK - uses: actions/setup-java@v2.1.0 - with: - java-version: '11' - distribution: 'zulu' + # - name: Setup Java JDK + # uses: actions/setup-java@v2.1.0 + # with: + # java-version: '11' + # distribution: 'zulu' - uses: actions/checkout@v2 # - uses: jepetty/debug-action@master - uses: actions/setup-node@v2 @@ -27,7 +27,7 @@ jobs: - name: Rich Code Nav Indexer uses: microsoft/RichCodeNavIndexer@v0.1.11 with: - languages: javascript,cpp,csharp,java + languages: typescript environment: production repo-token: ${{ secrets.GITHUB_TOKEN }} typescriptVersion: 0.6.0-next.15 From ba71d378b6d8a6c42846877e42bab6006e675ece Mon Sep 17 00:00:00 2001 From: noecald Date: Thu, 5 Aug 2021 13:43:03 -0700 Subject: [PATCH 38/38] remove specific patch version of indexer tool --- .github/workflows/codextest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codextest.yml b/.github/workflows/codextest.yml index 932e7f3..8d9f895 100644 --- a/.github/workflows/codextest.yml +++ b/.github/workflows/codextest.yml @@ -25,7 +25,7 @@ jobs: with: node-version: 14 - name: Rich Code Nav Indexer - uses: microsoft/RichCodeNavIndexer@v0.1.11 + uses: microsoft/RichCodeNavIndexer@v0.1 with: languages: typescript environment: production