-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7a3d3b0
commit cc50b77
Showing
4 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,6 @@ | |
indent_style = space | ||
indent_size = 4 | ||
tab_width = 8 | ||
|
||
[*.yml] | ||
indent_size = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,6 +56,7 @@ ylwrap | |
[Rr]elease/ | ||
x64/ | ||
x86/ | ||
*.log | ||
|
||
# Visual Studio cache/options directory | ||
.vs/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
language: c++ | ||
|
||
matrix: | ||
include: | ||
- name: "Linux (GCC)" | ||
os: linux | ||
dist: bionic | ||
compiler: gcc | ||
before_install: | ||
- sudo apt-get -y install make gcc automake libtool flex bison | ||
- sudo apt-get -y install libelf-dev libusb-dev libftdi1-dev libhidapi-dev | ||
script: | ||
- ./bootstrap | ||
- ./configure | ||
- make | ||
- name: "macOS (clang)" | ||
os: osx | ||
osx_image: xcode12u | ||
compiler: clang | ||
before_install: | ||
- brew install flex bison | ||
script: | ||
- ./bootstrap | ||
- ./configure | ||
- make | ||
- name: "Windows (MSVC)" | ||
if: branch = windows OR branch = dev | ||
os: windows | ||
before_install: | ||
- choco install visualstudio2019buildtools --package-parameters "--add Microsoft.VisualStudio.Workload.VCTools --add Microsoft.VisualStudio.Component.VC.Tools.x86.x64 --add Microsoft.VisualStudio.Component.Windows10SDK.18362" | ||
- export PATH=$PATH:"/c/Program Files (x86)/Microsoft Visual Studio/2019/BuildTools/MSBuild/Current/Bin" | ||
script: | ||
- MSBuild.exe -fileLogger -target:avrdude -property:Configuration=Release -property:Platform=x64 avrdude.sln |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters