Skip to content

Commit 5bcd30b

Browse files
committed
Upload test 1
1 parent a95eeb0 commit 5bcd30b

File tree

3 files changed

+40
-20
lines changed

3 files changed

+40
-20
lines changed

.github/workflows/CodeQuality.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,25 @@ name: CodeQuality
22
on:
33
workflow_dispatch:
44
repository_dispatch:
5-
push:
6-
branches:
7-
- '**'
8-
- '!main'
9-
- '!feature'
10-
paths-ignore:
11-
- '**.md'
12-
- '.github/patches/duckdb-wasm/**'
13-
- '.github/workflows/**'
14-
- '!.github/workflows/lcov_exclude'
15-
- '!.github/workflows/CodeQuality.yml'
5+
# push:
6+
# branches:
7+
# - '**'
8+
# - '!main'
9+
# - '!feature'
10+
# paths-ignore:
11+
# - '**.md'
12+
# - '.github/patches/duckdb-wasm/**'
13+
# - '.github/workflows/**'
14+
# - '!.github/workflows/lcov_exclude'
15+
# - '!.github/workflows/CodeQuality.yml'
1616

17-
pull_request:
18-
types: [opened, reopened, ready_for_review, synchronize]
19-
paths-ignore:
20-
- '**.md'
21-
- '.github/workflows/**'
22-
- '!.github/workflows/lcov_exclude'
23-
- '!.github/workflows/CodeQuality.yml'
17+
# pull_request:
18+
# types: [opened, reopened, ready_for_review, synchronize]
19+
# paths-ignore:
20+
# - '**.md'
21+
# - '.github/workflows/**'
22+
# - '!.github/workflows/lcov_exclude'
23+
# - '!.github/workflows/CodeQuality.yml'
2424

2525
concurrency:
2626
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref || '' }}-${{ github.base_ref || '' }}-${{ github.ref != 'refs/heads/main' || github.sha }}

.github/workflows/ODBC.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: ODBC
22
on:
3-
push:
4-
pull_request:
3+
# push:
4+
# pull_request:
55
workflow_dispatch:
66
inputs:
77
override_git_describe:

.github/workflows/UploadTest.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Upload Test
2+
on:
3+
push:
4+
workflow_dispatch:
5+
6+
jobs:
7+
upload-test:
8+
name: Upload Test
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Upload
12+
env:
13+
AWS_ENDPOINT_URL: ${{ secrets.S3_DUCKDB_STAGING_ENDPOINT }}
14+
AWS_ACCESS_KEY_ID: ${{ secrets.S3_DUCKDB_STAGING_ID }}
15+
AWS_SECRET_ACCESS_KEY: ${{ secrets.S3_DUCKDB_STAGING_KEY }}
16+
run: |
17+
filename="duckdb_odbc-test-$(date +"%Y%m%d%H%M%S").txt"
18+
echo quack > $filename
19+
python3 -m pip install awscli
20+
aws s3 cp $filename s3://duckdb-staging/a95eeb08/duckdb/duckdb-odbc/github_release/ --region us-east-2

0 commit comments

Comments
 (0)