Skip to content

Commit e5df6d0

Browse files
authored
Add .circleci/config.yml (#33)
1 parent 5c52705 commit e5df6d0

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.circleci/config.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)