Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add spatial data types #55

Draft
wants to merge 37 commits into
base: master
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
b500ab0
Add spatial data types
gitbuda Aug 17, 2024
d58bab9
Add Point2D and Point3D + tests
gitbuda Aug 18, 2024
65ff828
Move to the latest mgclient
gitbuda Aug 24, 2024
dcb84ac
Fix linux build
gitbuda Aug 24, 2024
9a513b1
Merge branch 'master' into add-spatial-types
gitbuda Aug 24, 2024
eed064f
Try 1 ssl, print dir
gitbuda Aug 24, 2024
f15e007
Try 2 ssl, ls fix
gitbuda Aug 24, 2024
c8119e9
Try 3 ssl, ls fix
gitbuda Aug 24, 2024
7ac4a37
Try 4 ssl, ls fix
gitbuda Aug 24, 2024
b39c332
Try 5 ssl, ls fix
gitbuda Aug 24, 2024
46461e3
Try 6 ssl, ls fix
gitbuda Aug 24, 2024
9a10e81
Try 7 ssl, ls fix
gitbuda Aug 24, 2024
bb1425f
Try 8 ssl
gitbuda Aug 24, 2024
0dc11ed
Try 9 ssl
gitbuda Aug 24, 2024
525222b
Try 10 ssl
gitbuda Aug 24, 2024
373ebe2
Try 11 ssl
gitbuda Aug 24, 2024
bb2ae9b
Try 12 ssl
gitbuda Aug 24, 2024
fb7c9f6
Try 13 ssl
gitbuda Aug 24, 2024
8f6a78b
Try 14 ssl
gitbuda Aug 24, 2024
4510368
Try 15 ssl
gitbuda Aug 24, 2024
a99c4ed
Try 16 ssl
gitbuda Aug 24, 2024
db45240
Try 17 ssl
gitbuda Aug 24, 2024
adbad91
Try 18 ssl
gitbuda Aug 24, 2024
c341d57
Try 19 ssl
gitbuda Aug 24, 2024
8380c25
Try 20 ssl
gitbuda Aug 24, 2024
f844919
Try 21 ssl
gitbuda Aug 24, 2024
f515f8c
Try 22 ssl
gitbuda Aug 24, 2024
1faba59
Try 23 ssl
gitbuda Aug 24, 2024
18be18a
Try 24 ssl
gitbuda Aug 24, 2024
b52a1b1
Try 25 ssl
gitbuda Aug 24, 2024
a212ad5
Try 26 ssl
gitbuda Aug 24, 2024
48eb993
Try 27 ssl
gitbuda Aug 24, 2024
41f3a24
Try 28 ssl
gitbuda Aug 25, 2024
ca123ca
Try 29 ssl
gitbuda Aug 25, 2024
4c9dbfa
Try 30 ssl
gitbuda Aug 25, 2024
0fafc9b
Try 31 ssl
gitbuda Aug 25, 2024
0d2bcb5
Try 32 ssl
gitbuda Aug 25, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Try 12 ssl
  • Loading branch information
gitbuda committed Aug 24, 2024
commit bb2ae9b1da41429652670aa40ebb8e729875df9d
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,18 +119,22 @@ jobs:
update: true
install: git mingw-w64-${{ matrix.arch.msys }}-toolchain mingw-w64-${{ matrix.arch.msys }}-cmake mingw-w64-${{ matrix.arch.msys }}-openssl

- name: Debug
- name: Debug 1
run: |
ls "C:/"
ls "C:/msys64"
ls "C:/msys64/mingw${{ matrix.arch.mingw }}"
ls "C:/msys64/mingw${{ matrix.arch.mingw }}/lib"
ls "C:/msys64/mingw${{ matrix.arch.mingw }}/lib" # -> empty

- name: Add mingw${{ matrix.arch.mingw }} to PATH
run: |
echo "C:/msys64/mingw${{ matrix.arch.mingw }}/bin" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
echo "CMAKE_GENERATOR=MinGW Makefiles" | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8

- name: Debug 2
run: |
openssl version -a

- uses: actions/checkout@v2
with:
submodules: true
Expand Down
Loading