Skip to content

Commit

Permalink
Merge branch 'release/0.2.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
vector-of-bool committed Mar 17, 2020
2 parents d4f0e47 + 71e34be commit 90526c3
Show file tree
Hide file tree
Showing 10 changed files with 51 additions and 20 deletions.
23 changes: 23 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
Boost Software License - Version 1.0 - August 17th, 2003

Permission is hereby granted, free of charge, to any person or organization
obtaining a copy of the software and accompanying documentation covered by
this license (the "Software") to use, reproduce, display, distribute,
execute, and transmit the Software, and to prepare derivative works of the
Software, and to permit third-parties to whom the Software is furnished to
do so, all subject to the following:

The copyright notices in the Software and this entire statement, including
the above license grant, this restriction and the following disclaimer,
must be included in all copies of the Software, in whole or in part, and
all derivative works of the Software, unless such copies or derivative
works are solely in the form of machine-executable object code generated by
a source language processor.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
12 changes: 6 additions & 6 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
echo Loading VS environment
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\Tools\vsdevcmd" -arch=x64 || exit 1
echo Executing Build and Tests
pwsh -noni -c iwr https://github.com/vector-of-bool/dds/releases/download/0.0.1/dds-win-x64.exe -OutFile dds.exe || exit 1
.\dds.exe build -t tools/msvc.dds
pwsh -noni -c iwr https://github.com/vector-of-bool/dds/releases/download/0.1.0-alpha.3/dds-win-x64.exe -OutFile dds.exe || exit 1
.\dds.exe build -t tools/msvc.jsonc
displayName: Build and Run Unit Tests
- job: Linux_GCC9
Expand All @@ -22,10 +22,10 @@ jobs:
set -eu
sudo apt update -y
sudo apt install -y g++-9
curl -L https://github.com/vector-of-bool/dds/releases/download/0.0.1/dds-linux-x64 -o dds
curl -L https://github.com/vector-of-bool/dds/releases/download/0.1.0-alpha.3/dds-linux-x64 -o dds
chmod +x dds
displayName: Prepare System
- script: ./dds build -t tools/gcc-9.dds
- script: ./dds build -t tools/gcc-9.jsonc
displayName: Build and Run Unit Tests

- job: macOS_GCC9
Expand All @@ -35,8 +35,8 @@ jobs:
- script: |
set -eu
brew install gcc@9
curl -L https://github.com/vector-of-bool/dds/releases/download/0.0.1/dds-macos-x64 -o dds
curl -L https://github.com/vector-of-bool/dds/releases/download/0.1.0-alpha.3/dds-macos-x64 -o dds
chmod +x dds
displayName: Prepare System
- script: ./dds build -t tools/gcc-9.dds
- script: ./dds build -t tools/gcc-9.jsonc
displayName: Build and Run Unit Tests
1 change: 0 additions & 1 deletion library.dds

This file was deleted.

3 changes: 3 additions & 0 deletions library.jsonc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"name": "pubgrub"
}
4 changes: 0 additions & 4 deletions package.dds

This file was deleted.

6 changes: 6 additions & 0 deletions package.jsonc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"name": "pubgrub",
"version": "0.2.1",
"namespace": "vob",
"test_driver": "Catch-Main"
}
7 changes: 0 additions & 7 deletions tools/gcc-9.dds

This file was deleted.

7 changes: 7 additions & 0 deletions tools/gcc-9.jsonc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"compiler_id": "gnu",
"cxx_version": "c++17",
"cxx_compiler": "g++-9",
"cxx_flags": "-fconcepts -Werror=return-type -D_GLIBCXX_DEBUG",
"debug": true
}
2 changes: 0 additions & 2 deletions tools/msvc.dds

This file was deleted.

6 changes: 6 additions & 0 deletions tools/msvc.jsonc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
// Compiler-ID: MSVC
// Flags: /std:c++latest
{
"compiler_id": "msvc",
"flags": "/std:c++latest"
}

0 comments on commit 90526c3

Please sign in to comment.