Skip to content

Commit 39c65c1

Browse files
authored
Merge pull request #402 from Inxton/dev
Release to preserve the state of the project prior to major refactoring
2 parents 4fc978c + 663b7af commit 39c65c1

File tree

1,596 files changed

+41722
-15843
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,596 files changed

+41722
-15843
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Bug report
33
about: Create a report to help us improve
44
title: "[BUG]"
55
labels: bug, question
6-
assignees: ix-ax
6+
assignees: inxton
77

88
---
99

.github/ISSUE_TEMPLATE/question.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Question
33
about: Ask question
44
title: "[QUESTION]"
55
labels: question
6-
assignees: ix-ax
6+
assignees: inxton
77

88
---
99

.github/actions/apax-build/action.yml

Lines changed: 0 additions & 26 deletions
This file was deleted.

.github/actions/setup-apax-runner/action.yml

Lines changed: 0 additions & 56 deletions
This file was deleted.

.github/issue-branch.yml

Lines changed: 0 additions & 3 deletions
This file was deleted.

.github/workflows/create_issue.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

.github/workflows/dev.yml

Lines changed: 30 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,51 @@
11
name: dev
22

33
on:
4-
push:
5-
branches: [ "dev" ]
6-
paths:
7-
- 'src/**'
8-
- 'cake/**'
9-
- '.github/**'
4+
# push:
5+
# branches: [ "dev" ]
6+
# paths:
7+
# - 'src/**'
8+
# - 'cake/**'
9+
# - '.github/**'
1010
workflow_dispatch:
11-
11+
inputs:
12+
publish:
13+
type: boolean
14+
required: false
15+
default: false
16+
description: "Set to 'true' to publish packages"
1217
jobs:
1318
build:
1419
strategy:
1520
matrix:
1621
configuration: [Release]
1722

18-
runs-on: [self-hosted, Windows, X64, L2] # For a list of available runner types, refer to
23+
runs-on: [self-hosted, Windows, X64, L2, AX] # For a list of available runner types, refer to
1924
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on
2025
steps:
2126
- name: Checkout
2227
uses: actions/checkout@v3
2328
with:
2429
fetch-depth: '0'
2530

26-
- name: "Build script"
31+
- name: "Build cake script"
2732
run: dotnet build cake/Build.csproj
2833

29-
- name: "Run build script"
34+
- name: "Run cake script"
35+
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.publish == 'false' }}
3036
env:
3137
GH_TOKEN : ${{ secrets.GH_TOKEN }}
32-
run: dotnet run --project cake/Build.csproj --do-test true --do-pack true --test-level 2 --do-publish true
33-
- name: Test Report
34-
uses: dorny/test-reporter@v1
35-
if: success() || failure()
36-
with:
37-
name: Test report
38-
path: 'TestResults/*.xml'
39-
reporter: dotnet-trx
40-
38+
run: dotnet run --project cake/Build.csproj --do-test --do-pack --test-level 2 --framework net9.0
39+
- name: "Publish packages"
40+
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.publish == 'true' }}
41+
env:
42+
GH_TOKEN: ${{ secrets.GH_TOKEN }}
43+
GH_USER: ${{ secrets.GH_USER }}
44+
run: dotnet run --project cake/Build.csproj --do-test --do-pack --test-level 2 --do-publish --do-publish-release --framework net9.0
45+
# - name: Test Report
46+
# uses: dorny/test-reporter@v1
47+
# if: success() || failure()
48+
# with:
49+
# name: Test report
50+
# path: 'TestResults/*.xml'
51+
# reporter: dotnet-trx

.github/workflows/master.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
matrix:
2222
configuration: [Release]
2323

24-
runs-on: [self-hosted, Windows, X64, L3] # For a list of available runner types, refer to
24+
runs-on: [self-hosted, Windows, X64, L3, AX] # For a list of available runner types, refer to
2525
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on
2626
steps:
2727
- name: Checkout
@@ -35,7 +35,7 @@ jobs:
3535
- name: "Run build script"
3636
env:
3737
GH_TOKEN : ${{ secrets.GH_TOKEN }}
38-
run: dotnet run --project cake/Build.csproj --do-test true --do-pack true --test-level 100 --do-publish true --do-publish-release true
38+
run: dotnet run --project cake/Build.csproj --do-test true --do-pack true --test-level 100 --do-publish true --do-publish-release true --framework net9.0
3939
- name: Test Report
4040
uses: dorny/test-reporter@v1
4141
if: success() || failure()

.github/workflows/pr-dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
matrix:
1616
configuration: [Release]
1717

18-
runs-on: [self-hosted, Windows, X64, L2] # For a list of available runner types, refer to
18+
runs-on: [self-hosted, Windows, X64, L2, AX] # For a list of available runner types, refer to
1919
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on
2020
steps:
2121
- name: Checkout
@@ -27,7 +27,7 @@ jobs:
2727
run: dotnet build cake/Build.csproj
2828

2929
- name: "Run build script"
30-
run: dotnet run --project cake/Build.csproj --do-test true --do-pack true --test-level 1
30+
run: dotnet run --project cake/Build.csproj --do-test true --do-pack true --test-level 1 --framework net9.0
3131
- name: Test Report
3232
uses: dorny/test-reporter@v1
3333
if: success() || failure()

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
matrix:
2222
configuration: [Release]
2323

24-
runs-on: [self-hosted, Windows, X64, L3] # For a list of available runner types, refer to
24+
runs-on: [self-hosted, Windows, X64, L3, AX] # For a list of available runner types, refer to
2525
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on
2626
steps:
2727
- name: Checkout
@@ -35,7 +35,7 @@ jobs:
3535
- name: "Run build script"
3636
env:
3737
GH_TOKEN : ${{ secrets.GH_TOKEN }}
38-
run: dotnet run --project cake/Build.csproj --do-test true --do-pack true --test-level 2 --do-publish true --do-publish-release true
38+
run: dotnet run --project cake/Build.csproj --do-test true --do-pack true --test-level 2 --do-publish true --do-publish-release true --framework net9.0
3939
- name: Test Report
4040
uses: dorny/test-reporter@v1
4141
if: success() || failure()

0 commit comments

Comments
 (0)