58 lines
1.5 KiB
YAML
58 lines
1.5 KiB
YAML
version: 2.1
|
|
|
|
orbs:
|
|
win: circleci/windows@2.4.0
|
|
|
|
executors:
|
|
linux-build:
|
|
description: "Executor using Debian and .NET Core 3.1"
|
|
docker:
|
|
- image: mcr.microsoft.com/dotnet/core/sdk:3.1-buster
|
|
working_directory: /mnt/ramdisk
|
|
|
|
jobs:
|
|
build_linux:
|
|
description: Build ModernUO with Debian
|
|
executor: linux-build
|
|
steps:
|
|
- run: rm -rf ~/project/.git # CircleCI git caching is likely broken
|
|
- checkout
|
|
- run:
|
|
name: Building ModernUO for Linux
|
|
command: Tools/publish.cmd linux
|
|
build_windows:
|
|
description: Build application
|
|
executor: win/default
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: Building ModernUO for Windows
|
|
command: Tools/publish.cmd win
|
|
code_styling:
|
|
description: Code analysis
|
|
executor: linux-build
|
|
steps:
|
|
- run: rm -rf ~/project/.git # CircleCI git caching is likely broken
|
|
- checkout
|
|
- run:
|
|
name: Building with Analyzers
|
|
command: Tools/publish.cmd linux Analyze
|
|
tests:
|
|
description: Unit Tests
|
|
executor: linux-build
|
|
steps:
|
|
- run: rm -rf ~/project/.git # CircleCI git caching is likely broken
|
|
- checkout
|
|
- run:
|
|
name: Build native libraries
|
|
command: /mnt/ramdisk/Tools/build-native-libraries.sh
|
|
- run:
|
|
name: Running unit tests
|
|
command: dotnet test -r linux-x64
|
|
workflows:
|
|
build-and-test:
|
|
jobs:
|
|
- build_linux
|
|
- build_windows
|
|
- code_styling
|
|
- tests
|