We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c52705 commit e5df6d0Copy full SHA for e5df6d0
.circleci/config.yml
@@ -0,0 +1,26 @@
1
+# Use the latest 2.1 version of CircleCI pipeline process engine.
2
+# See: https://circleci.com/docs/2.0/configuration-reference
3
+version: 2.1
4
+
5
+# Define a job to be invoked later in a workflow.
6
+# See: https://circleci.com/docs/2.0/configuration-reference/#jobs
7
+jobs:
8
+ build:
9
+ machine:
10
+ image: windows-default
11
+ resource_class: windows.medium
12
+ steps:
13
+ - checkout
14
+ - run:
15
+ name: build
16
+ shell: cmd.exe
17
+ command: ci\ci.mingw.bat
18
19
20
+# Invoke jobs via workflows
21
+# See: https://circleci.com/docs/2.0/configuration-reference/#workflows
22
+workflows:
23
+ mingw:
24
+ jobs:
25
+ - build
26
0 commit comments