kou commented on PR #48933:
URL: https://github.com/apache/arrow/pull/48933#issuecomment-3782119022
It may be better that we use Ubuntu instead of Windows something like the
following because `.github/actions/sync-nightlies/` assumes Linux:
```diff
diff --git a/.github/workflows/cpp_extra.yml
b/.github/workflows/cpp_extra.yml
index 68f47926ad..23ffdd486f 100644
--- a/.github/workflows/cpp_extra.yml
+++ b/.github/workflows/cpp_extra.yml
@@ -457,15 +457,23 @@ jobs:
name: flight-sql-odbc-msi-installer
path: build/cpp/Apache Arrow Flight SQL ODBC-*-win64.msi
if-no-files-found: error
- # Upload ODBC installer as nightly release in scheduled runs
+
+ odbc-nightly:
+ needs: odbc
+ name: ODBC nightly
+ runs-on: ubuntu-latest
+ if: github.event_name == 'schedule' && github.repository =
'apache/arrow'
+ steps:
+ - name: Download the artifacts
+ uses: actions/download-artifact@v7
+ with:
+ name: flight-sql-odbc-msi-installer
- name: Prepare ODBC installer for sync
- if: github.event_name == 'schedule'
run: |
mkdir odbc-installer
- Move-Item "build/cpp/Apache Arrow Flight SQL ODBC-*-win64.msi"
odbc-installer/
- tree odbc-installer /f
+ mv *.msi odbc-installer/
+ tree odbc-installer
- name: Sync to Remote
- if: github.event_name == 'schedule'
uses: ./.github/actions/sync-nightlies
with:
upload: true
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]