We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8235695 commit f016caeCopy full SHA for f016cae
.github/workflows/Windows.yml
@@ -46,6 +46,13 @@ jobs:
46
new-item ${{ github.workspace }}/install -itemtype directory
47
new-item ${{ github.workspace }}/package -itemtype directory
48
49
+ - name: Create Test Database
50
+ run: |
51
+ $timestamp = [math]::Round([double](Get-Date -UFormat %s) * 1000)
52
+ $creds = New-Object System.Management.Automation.PSCredential("default", (ConvertTo-SecureString "${{ secrets.INTEGRATIONS_TEAM_TESTS_CLOUD_PASSWORD_SMT }}" -AsPlainText -Force))
53
+ Invoke-WebRequest -Uri "https://${{ secrets.INTEGRATIONS_TEAM_TESTS_CLOUD_HOST_SMT }}:8443/?query=" -Method POST -ContentType "text/plain" -Body "create database test${timestamp}_odbc" -Credential $creds
54
+
55
56
- name: Clone the repo
57
uses: actions/checkout@v4
58
with:
0 commit comments