Skip to content

Commit c663058

Browse files
committed
Try different cloning method
Signed-off-by: Guian Gumpac <guian.gumpac@improving.com>
1 parent 325ca50 commit c663058

File tree

1 file changed

+15
-8
lines changed

1 file changed

+15
-8
lines changed

.github/workflows/odbc.yml

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,29 +12,36 @@ jobs:
1212
run: |
1313
mkdir github
1414
cd github
15+
16+
- name: Clone vcpkg
17+
uses: actions/checkout@v4
18+
with:
19+
repository: microsoft/vcpkg
1520

1621
- name: Set up vcpkg
1722
run: |
18-
git clone https://github.com/microsoft/vcpkg/
23+
tree
1924
./vcpkg/bootstrap-vcpkg.bat
2025
cd vcpkg
2126
pwd >> $VCPKG_ROOT
2227
echo $VCPKG_ROOT
2328
2429
- name: Clone arrow
25-
run: |
26-
cd ..
27-
pwd
28-
git clone https://github.com/apache/arrow.git
30+
uses: actions/checkout@v4
31+
with:
32+
repository: arrow/arrow
2933

3034
- name: Clone flight
31-
run: |
32-
git clone https://github.com/dbt-labs/flightsql-odbc.git
35+
uses: actions/checkout@v4
36+
with:
37+
repository: dbt-labs/flightsql-odbc
3338

3439
- name: Install CMake
3540
uses: ssrobins/install-cmake@v1
3641

3742
- uses: actions/checkout@v4
3843

3944
- name: Show directory tree
40-
run: tree
45+
run: |
46+
echo $VCPKG_ROOT
47+
tree

0 commit comments

Comments
 (0)