Let us consider a more advanced (but still introductory) "hello world" application using the Windows executor. This example application still prints "Hello World" to the console, but does so using .NET core to create an executable, uses dependency caching, and creates an artifact on every build.
You can view the entire configuration here. It also includes browser and UI testing, but we will focus on the hello-world workflow for now.
Above, we start by declaring that we will use version 2.1 of CircleCI, giving us access to orbs and Pipelines.
orbs:
win: circleci/windows@4.1.1
Next, we declare orbs that we will be using in our build. We will only use the Windows orb to help us get started. This example uses the 2.4.0 version of the orb, but you may consider using a more recent version.
workflows:
hello-world:
jobs:
- build
We define a hello-world workflow, in which we run a single job named build.
jobs:
build:
executor:
name: win/default
Under the jobs key, we define the build job, and set the executor via the orb we are using.
In our first step, we run the checkout command to pull our source code from our version control system.
- restore_cache:
keys:
- run:
name: "Install project dependencies"
command: dotnet.exe restore
- save_cache:
paths:
- C:\Users\circleci\.nuget\packages
Next in the config, we make use of caching to restore cached dependencies from previous builds. The command dotnet restore will fetch any dependencies that are not already installed/restored from the cache. Learn more about caching in our caching document.
- run:
name: "Run Build step"
command: dotnet.exe publish -c Release -r win10-x64
- run:
name: "Test the executable"
command: .\bin\Release\netcoreapp2.1\win10-x64\publish\circleci-demo-windows.exe
Next, we run two steps: one to build the executable for Windows 10, and another to test the executable (expecting to see Hello World printed to the console).
- store_artifacts:
path: .\bin\Release\netcoreapp2.1\win10-x64\publish\circleci-demo-windows.exe
In our last step, we store the build executable as an artifact, making it accessible with the CircleCI web application or API.