Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
33de35f
Change nugetpat
jumattos Mar 26, 2019
c0cb487
Updating githubpat
jumattos Mar 26, 2019
90ddb1f
Switch colon for comma
jumattos Mar 26, 2019
d26dc94
Set up CI with Azure Pipelines
jumattos Sep 9, 2019
e534dbe
Update azure pipeline
jumattos Sep 9, 2019
0dd8ff5
remove pipeline
jumattos Sep 9, 2019
82f6230
Set up CI with Azure Pipelines
jumattos Sep 9, 2019
b6cf4ac
Update azure-pipelines.yml for Azure Pipelines
jumattos Sep 9, 2019
6cdc441
aaaaah
jumattos Sep 9, 2019
74aaf8f
Set up CI with Azure Pipelines
jumattos Sep 9, 2019
ea00ce4
Update azure-pipelines.yml for Azure Pipelines
jumattos Sep 10, 2019
ec933f3
Update azure-pipelines.yml for Azure Pipelines
jumattos Sep 10, 2019
5387aa4
Update azure-pipelines.yml for Azure Pipelines
jumattos Sep 10, 2019
f94ed07
Delete azure-pipelines.yml
jumattos Sep 10, 2019
5494ae2
Set up CI with Azure Pipelines
jumattos Sep 10, 2019
3f11491
Update azure-pipelines.yml for Azure Pipelines
jumattos Sep 10, 2019
0615c0f
Remove pipeline (old)
jumattos Sep 11, 2019
80727d5
C# version of dialog
jumattos Sep 11, 2019
a654483
pls
jumattos Oct 10, 2019
dbfa8f7
change
jumattos Oct 10, 2019
4a213bd
change
jumattos Oct 10, 2019
5f58b73
change
jumattos Oct 10, 2019
8b54f6f
change
jumattos Oct 11, 2019
7736689
New dialog for C# (#6)
jumattos Oct 11, 2019
639abda
Remove C# dialog
jumattos Oct 18, 2019
c4b506a
Add build status to README
jumattos Oct 23, 2019
ada8f12
Add known issues
jumattos Oct 24, 2019
ebce3e8
New block!
jumattos Jan 25, 2020
000410e
Sync to azure devops
xuachen Mar 18, 2020
5c2b752
Sync to azure repo
xuachen Mar 19, 2020
92f7579
Modify github connection
xuachen Mar 19, 2020
a860203
Add status badge
xuachen Mar 24, 2020
21df570
Add first workflow templates
jepetty Jul 9, 2020
f1f6e2c
Add typescript action
jepetty Jul 9, 2020
2eb92d0
Update richnav-csharp.yml
jepetty Jul 9, 2020
0cbba6c
Use master of rich nav task
jepetty Jul 9, 2020
692abec
Add java workflow
jepetty Jul 9, 2020
b75b1ae
Fix typescript action
jepetty Jul 9, 2020
27017e4
Merge branch 'master' into addTemplates
jepetty Jul 9, 2020
829630f
Add new template for entire workflow
jepetty Jul 9, 2020
34cedcd
Merge branch 'addTemplates' of https://github.com/jepetty/tester-game…
jepetty Jul 9, 2020
e3dfb32
try specifying pull requests first
jepetty Jul 9, 2020
41d17e0
Explicitly list languages, use v0.1 for all
jepetty Jul 13, 2020
b59b9b2
Fix typo
jepetty Jul 13, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions .github/workflows/richnav-all.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
### This template is meant to be used by a .NET Core repository running RichNav
### Please fill anything marked above with a "# **** #" comment with the value appropriate for your repository

name: Rich Code Navigation

on:
pull_request:
push:
branches: [ master ]

jobs:
richnav:

runs-on: windows-latest

steps:
- uses: actions/checkout@v2

# **** Please change 'dotnet-version' to be the version of the .NET SDK used in your project **** #
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.101

# **** Please change 'working-directory' to be the location where your .SLN file is located **** #
- name: Install dependencies
run: dotnet restore
working-directory: ./csharp

# **** Please change the version of Node being used to the one for your project **** #
- name: Use Node.js 12.x
uses: actions/setup-node@v1
with:
node-version: 12.x

- run: yarn
working-directory: typescript

- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8

- uses: microsoft/RichCodeNavIndexer@v0.1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
languages: csharp,java,typescript,cpp
33 changes: 33 additions & 0 deletions .github/workflows/richnav-csharp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
### This template is meant to be used by a .NET Core repository running RichNav
### Please fill anything marked above with a "# **** #" comment with the value appropriate for your repository
name: Rich Code Navigation (.NET Core)

on:
pull_request:
push:
branches: [ master ]

jobs:
build:

runs-on: windows-latest

steps:

- uses: actions/checkout@v2

# **** Please change 'dotnet-version' to be the version of the .NET SDK used in your project **** #
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.101

# **** Please change 'working-directory' to be the location where your .SLN file is located **** #
- name: Install dependencies
run: dotnet restore
working-directory: ./csharp

- uses: microsoft/RichCodeNavIndexer@v0.1
with:
languages: csharp
repo-token: ${{ secrets.GITHUB_TOKEN }}
27 changes: 27 additions & 0 deletions .github/workflows/richnav-java.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
### This template is meant to be used by a .NET Core repository running RichNav
### Please fill anything marked above with a "# **** #" comment with the value appropriate for your repository

name: Rich Code Navigation (Java with Maven)

on:
pull_request:
push:
branches: [ master ]

jobs:
richnav:

runs-on: windows-latest

steps:
- uses: actions/checkout@v2

- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8

- uses: microsoft/RichCodeNavIndexer@v0.1
with:
languages: java
repo-token: ${{ secrets.GITHUB_TOKEN }}
35 changes: 35 additions & 0 deletions .github/workflows/richnav-typescript.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
### This template is meant to be used by a .NET Core repository running RichNav
### Please fill anything marked above with a "# **** #" comment with the value appropriate for your repository

name: Rich Code Navigation (Node JS)

on:
pull_request:
push:
branches: [ master ]

jobs:
richnav:

runs-on: windows-latest

# **** If necessary, use the Node version for your repository. Note: must be greater than 10.x **** #
strategy:
matrix:
node-version: [10.x, 12.x, 14.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}

- run: yarn
working-directory: typescript

- uses: microsoft/RichCodeNavIndexer@v0.1
with:
languages: typescript
repo-token: ${{ secrets.GITHUB_TOKEN }}

Loading