Skip to content

Commit 415d7d9

Browse files
committed
Add CI
1 parent 3efaf7b commit 415d7d9

File tree

2 files changed

+45
-0
lines changed

2 files changed

+45
-0
lines changed

.travis.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
language: cpp
2+
compiler:
3+
- gcc
4+
script: make dist
5+
notifications:
6+
email:
7+
recipients:
8+
9+
on_success: change
10+
on_failure: always
11+
deploy:
12+
provider: releases
13+
api_key:
14+
secure: Lg/Po5YFRcnrpqjgrdHcyGdxhRe8iB01Og8hvTmhhDxew1mpVHCfcZxO1VMpBxWnLS3ud4UdMjC3RBpcCWTvt0w9g35Vt9cj7XgnBEBHrBBA5DL+E5cAj/5Sf63pztc85m/kB0WODNG2NQiTpjonszrFHpmWdmXp3mqP95mZVBw=
15+
file: mkspiffs-$TRAVIS_TAG-linux64.tar.gz
16+
on:
17+
repo: igrr/mkspiffs
18+
tags: true
19+
all_branches: true

appveyor.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
version: 0.0.{build}
2+
3+
platform:
4+
- x86
5+
6+
skip_commits:
7+
message: /\[ci skip\]/
8+
9+
matrix:
10+
fast_finish: true
11+
12+
build_script:
13+
- SET PATH=C:\MinGW\bin;C:\MinGW\msys\1.0\bin;%PATH%
14+
- make dist
15+
- appveyor PushArtifact mkspiffs*.zip
16+
17+
deploy:
18+
release: $(PRODUCT_VERSION)
19+
provider: GitHub
20+
auth_token:
21+
secure: 'PGg5fnoBpP1Omzr6f3KIYDiD8J30rretQjSl/MITRpzvSCmN88kM6VDMz1TBGZTA'
22+
artifact: /.*\.zip/
23+
draft: true
24+
prerelease: false
25+
on:
26+
appveyor_repo_tag: true

0 commit comments

Comments
 (0)