-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Reduce packaging depependency version numbers * Add build rules to generate variable and property pattern lists * Implement lint checks on assignment/use of variables that are "close" to builtins except for case. * Move first_token from configuration object into format context * Add line, col info to lex error message * Fix wrong root parser for FetchContent_MakeAvailable * Fix missing support for string integer npargs * Fix missing spec for derived classes of PositionalGroupNode * Fix on/off switch doesn't work inside a statement * Fix extraneous whitespace inserted before line comment in some statements * Add more helpful error message on failed configfile parse * Move documentation build to build time and push documentation artifacts to an artifact repository Closes: #162 Closes: #163 Closes: #164
- Loading branch information
1 parent
752d045
commit b52eb7e
Showing
100 changed files
with
5,153 additions
and
1,603 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
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,20 @@ | ||
# .readthedocs.yml | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
|
||
version: 2 | ||
sphinx: | ||
configuration: conf.py | ||
|
||
build: | ||
image: latest | ||
|
||
formats: all | ||
python: | ||
version: 3.7 | ||
install: | ||
- requirements: requirements.txt | ||
- method: pip | ||
path: . | ||
extra_requirements: | ||
- YAML | ||
- html-gen |
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 @@ | ||
tangent/tooling/sparse-exports/cmake_format |
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 |
---|---|---|
@@ -1,13 +1,42 @@ | ||
dist: xenial | ||
language: python | ||
python: | ||
- "2.7" | ||
- "3.5" | ||
- "3.6" | ||
- '2.7' | ||
- '3.5' | ||
- '3.6' | ||
|
||
before_install: | ||
- sudo apt-get update | ||
- sudo apt-get -y install pandoc | ||
|
||
install: | ||
- pip install -r requirements.txt | ||
- pip install -r requirements.txt | ||
|
||
script: | ||
- make better-test | ||
- make lint | ||
- make better-test | ||
- make lint | ||
|
||
env: | ||
global: | ||
# GITHUB_ACCESS_TOKEN= | ||
secure: "e62y3i4FG7KsJ/I8aVKoPk5CG0L7/TW1K4M+BLt5zULsKGyRw6b53I97p5Tc1zcAHqcocFeYL/eC3AucG3VNvyv6LIZuv5Y0upF/MG++tvkfV9Iyok76mP70DXR/ikAJDMgZSdEL/6uTTJ4XfBuH/VvCMMBvj+5ORSL65KIfqXcexj2JWaNtEEfwiVSkDvQZYYbHLRjQdAXzzI7g1xh+8mCmuFAvtn6U1cIZpdQv5u1DNIry8PoQ2asHr+vaCN9iVXvkWcUjoXpJTp96Hd8eO40ts3v3Ja1yJ7GzH09zjbKJS63dcB0LfV5uLjybJCkQ03102ua0V+E5OzPn5VYeIRSRWmdo35e9xZjqqbtNdHqNayOOpew/ik+wf2Nmzva5MCRf154pFfWjBDL4zh0WGBW8FyJ/9NxdYDJsOIznHBPBHCXnQOlrpdInIptuoLnT52V7MOq9XIiuqLlAH8Tr0GzNSJIJfwwhwJuGxgYi2DPDH8PRmkbHbvY/mN2WBxNFfHBSfCQGZJt6kHtEE+xIi0QQXME0h36V/8sOsmQDzArNFl2Um5GCXodtIjZI6Ga3nQhHDRRiQKJz0V/9OsJF4GteGw94xt/l6PkCT0o4D1cmPIELrBTzaEMnXYKRQEOPnvViyV8eJF2RBnaqNk+FqI+hmGtXXUKAdXZWAzyS66I=" | ||
|
||
jobs: | ||
include: | ||
- stage: deploy | ||
name: deploy-tag | ||
if: repo = cheshirekow/cmake_format | ||
AND NOT tag IS present | ||
AND branch =~ ^((master)|(staging))$ | ||
python: 3.6 | ||
script: | ||
- make push-github-pseudorelease-tag | ||
- name: deploy-artifacts | ||
python: 3.6 | ||
if: repo = cheshirekow/cmake_format | ||
AND tag IS present | ||
AND (tag =~ ^pseudo-((master)|(staging))$ | ||
OR tag =~ ^v\d+\.\d+\.\d+) | ||
script: | ||
- make push-github-release | ||
- make push-rtd-repo |
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
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
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
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,17 @@ | ||
function(detect_buildenv) | ||
if(DEFINED ENV{CI} | ||
AND DEFINED ENV{TRAVIS} | ||
AND "$ENV{CI}" STREQUAL "true" | ||
AND "$ENV{TRAVIS}" STREQUAL "true") | ||
set(IS_TRAVIS_CI TRUE PARENT_SCOPE) | ||
else() | ||
set(IS_TRAVIS_CI FALSE PARENT_SCOPE) | ||
endif() | ||
|
||
if(DEFINED ENV{TRAVIS_PULL_REQUEST} | ||
AND "$ENV{TRAVIS_PULL_REQUEST}" STREQUAL "true") | ||
set(IS_PULL_REQUEST TRUE PARENT_SCOPE) | ||
else() | ||
set(IS_PULL_REQUEST FALSE PARENT_SCOPE) | ||
endif() | ||
endfunction() |
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
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
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 |
---|---|---|
|
@@ -3,4 +3,4 @@ | |
""" | ||
from __future__ import unicode_literals | ||
|
||
VERSION = '0.6.7' | ||
VERSION = '0.6.8.dev0' |
Oops, something went wrong.