Skip to content

Commit 8639f9a

Browse files
authored
Merge pull request #6 from ViRGIS-Team/master
Conda Updates
2 parents 3039df5 + ed563da commit 8639f9a

File tree

128 files changed

+13148
-41
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

128 files changed

+13148
-41
lines changed

.DS_Store

6 KB
Binary file not shown.

.github/workflows/main.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Windows Build Test
2+
on:
3+
workflow_dispatch
4+
5+
jobs:
6+
build:
7+
runs-on: windows-latest
8+
steps:
9+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
10+
- name: Checkout The PR
11+
uses: actions/checkout@v2
12+
13+
- name: Install Conda
14+
uses: conda-incubator/[email protected]
15+
16+
- name: Install PDAL
17+
shell: pwsh
18+
run: conda install -c conda-forge pdal
19+
20+
- name: Build
21+
shell: pwsh
22+
run: |
23+
set TOOLCHAIN=""
24+
cd $env:GITHUB_WORKSPACE
25+
Start-Process make.bat
26+
27+
- name: Test
28+
shell: pwsh
29+
run: |
30+
$env:PATH="$env:GITHUB_WORKSPACE\build\x64-windows\source\pdal\release\;$env:GITHUB_WORKSPACE\build\x64-windows\tests\pdal\release;$env:PATH"
31+
Start-Process test_pdalc.exe
32+

.gitignore

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,18 @@ tests/data/*.json
44
tests/pdal/test_pdalc_*.c
55
!tests/pdal/test_pdalc_utils.c
66

7-
# Ignore doxygen docs
8-
/doc/doxygen
9-
/doc/Doxyfile
10-
117
# Select VS Code configurations
128
.vscode/ipch/**
139
.vscode/settings.json
1410
.vscode/c_cpp_properties.json
1511

12+
.vs/
13+
1614
# Vim ancillary files
1715
*~
1816
*.swp
1917

18+
.DS_Store
2019
# Build directory
2120
/build
2221

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ endif()
2222
# Do not use a suffix for RelWithDebInfo
2323
set(CMAKE_DEBUG_POSTFIX "d" CACHE STRING "CMake debug suffix")
2424
set(CMAKE_RELWITHDEBINFO_POSTFIX "" CACHE STRING "CMake RelWithDebInfo suffix")
25-
set(PDALC_ENABLE_CODE_COVERAGE ON CACHE BOOL "Enable code coverage calculation")
25+
set(PDALC_ENABLE_CODE_COVERAGE OFF CACHE BOOL "Enable code coverage calculation")
2626
set(PDALC_ENABLE_DOCS ON CACHE BOOL "Enable documentation generation")
2727
set(PDALC_ENABLE_TESTS ON CACHE BOOL "Enable pdal-c tests")
2828
set(PDALC_GCC_PARAM_GGC_MIN_HEAPSIZE "131072" CACHE STRING "GCC garbage collection minimum heap size")
@@ -49,7 +49,7 @@ endif()
4949
add_subdirectory("source/pdal")
5050

5151
if(PDALC_ENABLE_DOCS)
52-
add_subdirectory("doc")
52+
add_subdirectory("docs")
5353
endif()
5454

5555
if(PDALC_ENABLE_TESTS)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
---

Testing/Temporary/LastTest.log

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Start testing: Oct 24 10:58 GMT Summer Time
2+
----------------------------------------------------------
3+
End testing: Oct 24 10:58 GMT Summer Time

docs/.nojekyll

Whitespace-only changes.
File renamed without changes.

0 commit comments

Comments
 (0)