Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
82 changes: 41 additions & 41 deletions .github/workflows/Benchmark.yml
Original file line number Diff line number Diff line change
@@ -1,41 +1,41 @@
# ***********************************************************
# * TakymLib *
# * Copyright (C) 2020-2022 Yigty.ORG; all rights reserved. *
# * Copyright (C) 2020-2022 Takym. *
# * *
# * distributed under the MIT License. *
# ***********************************************************

name: "Benchmark"

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
Benchmark:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
# Build
- name: Build (Target Programs)
run: dotnet build -c ReleaseW
- name: Build (Testing Environment)
run: dotnet build -c BenchmarkW
# Test
- name: Test
run: dotnet test -c BenchmarkW --no-build --verbosity normal
# Upload Artifacts
- name: Save Benchmarks Results
uses: actions/upload-artifact@v3.1.0
with:
name: benchmarks-results
path: tests/bin/Benchmark/**
# ***********************************************************
# * TakymLib *
# * Copyright (C) 2020-2022 Yigty.ORG; all rights reserved. *
# * Copyright (C) 2020-2022 Takym. *
# * *
# * distributed under the MIT License. *
# ***********************************************************
name: "Benchmark"
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
Benchmark:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
# Build
- name: Build (Target Programs)
run: dotnet build -c ReleaseW
- name: Build (Testing Environment)
run: dotnet build -c BenchmarkW
# Test
- name: Test
run: dotnet test -c BenchmarkW --no-build --verbosity normal
# Upload Artifacts
- name: Save Benchmarks Results
uses: actions/upload-artifact@v3.1.0
with:
name: benchmarks-results
path: tests/bin/Benchmark/**
92 changes: 46 additions & 46 deletions .github/workflows/BuildTest.yml
Original file line number Diff line number Diff line change
@@ -1,46 +1,46 @@
# ***********************************************************
# * TakymLib *
# * Copyright (C) 2020-2022 Yigty.ORG; all rights reserved. *
# * Copyright (C) 2020-2022 Takym. *
# * *
# * distributed under the MIT License. *
# ***********************************************************

name: "BuildTest"

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
BuildTest:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ windows-latest, ubuntu-latest, macos-latest ]
bc: [ Debug, Release ]
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
# Build
- name: BuildW
if: matrix.os == 'windows-latest'
run: dotnet build -c ${{ matrix.bc }}W
- name: Build
if: matrix.os != 'windows-latest'
run: dotnet build -c ${{ matrix.bc }}
# Test
- name: TestW
if: matrix.os == 'windows-latest'
run: dotnet test -c ${{ matrix.bc }}W --no-build --verbosity normal
- name: Test
if: matrix.os != 'windows-latest'
run: dotnet test -c ${{ matrix.bc }} --no-build --verbosity normal
# ***********************************************************
# * TakymLib *
# * Copyright (C) 2020-2022 Yigty.ORG; all rights reserved. *
# * Copyright (C) 2020-2022 Takym. *
# * *
# * distributed under the MIT License. *
# ***********************************************************
name: "BuildTest"
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
BuildTest:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ windows-latest, ubuntu-latest, macos-latest ]
bc: [ Debug, Release ]
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
# Build
- name: BuildW
if: matrix.os == 'windows-latest'
run: dotnet build -c ${{ matrix.bc }}W
- name: Build
if: matrix.os != 'windows-latest'
run: dotnet build -c ${{ matrix.bc }}
# Test
- name: TestW
if: matrix.os == 'windows-latest'
run: dotnet test -c ${{ matrix.bc }}W --no-build --verbosity normal
- name: Test
if: matrix.os != 'windows-latest'
run: dotnet test -c ${{ matrix.bc }} --no-build --verbosity normal
94 changes: 47 additions & 47 deletions .github/workflows/CodeQL.2.yml
Original file line number Diff line number Diff line change
@@ -1,47 +1,47 @@
# ***********************************************************
# * TakymLib *
# * Copyright (C) 2020-2022 Yigty.ORG; all rights reserved. *
# * Copyright (C) 2020-2022 Takym. *
# * *
# * distributed under the MIT License. *
# ***********************************************************

name: "CodeQL (2)"

on:
schedule:
- cron: '0 0 1 * *'

jobs:
analyze:
name: Analyze
runs-on: windows-2019

strategy:
fail-fast: true
matrix:
bc: [ Debug, DebugW, Release, ReleaseW, Benchmark, BenchmarkW ]

steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive

# Initialize
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: csharp

# Build
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Build
run: dotnet build -c ${{ matrix.bc }}

# Analyze
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
# ***********************************************************
# * TakymLib *
# * Copyright (C) 2020-2022 Yigty.ORG; all rights reserved. *
# * Copyright (C) 2020-2022 Takym. *
# * *
# * distributed under the MIT License. *
# ***********************************************************
name: "CodeQL (2)"
on:
schedule:
- cron: '0 0 1 * *'
jobs:
analyze:
name: Analyze
runs-on: windows-2019
strategy:
fail-fast: true
matrix:
bc: [ Debug, DebugW, Release, ReleaseW, Benchmark, BenchmarkW ]
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
# Initialize
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: csharp
# Build
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Build
run: dotnet build -c ${{ matrix.bc }}
# Analyze
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
128 changes: 64 additions & 64 deletions .github/workflows/CodeQL.yml
Original file line number Diff line number Diff line change
@@ -1,64 +1,64 @@
# ***********************************************************
# * TakymLib *
# * Copyright (C) 2020-2022 Yigty.ORG; all rights reserved. *
# * Copyright (C) 2020-2022 Takym. *
# * *
# * distributed under the MIT License. *
# ***********************************************************

name: "CodeQL"

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
#schedule:
# - cron: '37 15 * * 2'

jobs:
analyze:
name: Analyze
runs-on: windows-2019

strategy:
fail-fast: false
matrix:
bc: [ DebugW, ReleaseW ]

steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive

# Initialize
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: csharp

# Build
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Build
run: dotnet build -c ${{ matrix.bc }}

# Analyze
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
continue-on-error: true
with:
ram: 8192

- name: Copy Temp Files
run: robocopy D:\a\_temp _temp /MIR
continue-on-error: true

- name: Save All Files
uses: actions/upload-artifact@v3.1.0
with:
name: files
path: "*"
# ***********************************************************
# * TakymLib *
# * Copyright (C) 2020-2022 Yigty.ORG; all rights reserved. *
# * Copyright (C) 2020-2022 Takym. *
# * *
# * distributed under the MIT License. *
# ***********************************************************
name: "CodeQL"
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
#schedule:
# - cron: '37 15 * * 2'
jobs:
analyze:
name: Analyze
runs-on: windows-2019
strategy:
fail-fast: false
matrix:
bc: [ DebugW, ReleaseW ]
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
# Initialize
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: csharp
# Build
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Build
run: dotnet build -c ${{ matrix.bc }}
# Analyze
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
continue-on-error: true
with:
ram: 8192
- name: Copy Temp Files
run: robocopy D:\a\_temp _temp /MIR
continue-on-error: true
- name: Save All Files
uses: actions/upload-artifact@v3.1.0
with:
name: files
path: "*"
Loading