Skip to content

Commit 6a56d60

Browse files
committed
Remove slack notifications and unsupported platforms.
1 parent ec8a7e8 commit 6a56d60

2 files changed

Lines changed: 3 additions & 61 deletions

File tree

.github/workflows/test_integration_adapter.yml

Lines changed: 0 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -48,27 +48,6 @@ jobs:
4848
if: contains(fromJSON('["postgres"]'), matrix.profile)
4949
run: docker-compose up -d
5050

51-
- name: Start trino
52-
working-directory: fal/projects/adapter/integration_tests/configs/trino
53-
if: contains(fromJSON('["trino"]'), matrix.profile)
54-
run: docker-compose up -d
55-
56-
- name: Setup sqlserver dependencies
57-
if: contains(fromJSON('["sqlserver"]'), matrix.profile)
58-
run: |
59-
sudo apt install unixodbc-dev
60-
sudo curl https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
61-
curl https://packages.microsoft.com/config/ubuntu/$(lsb_release -rs)/prod.list > prod.list
62-
sudo cp prod.list /etc/apt/sources.list.d/mssql-release.list
63-
sudo apt update
64-
sudo ACCEPT_EULA=Y apt-get install -y msodbcsql18
65-
66-
- name: Start sqlserver
67-
working-directory: fal/projects/adapter/integration_tests/configs/sqlserver
68-
if: contains(fromJSON('["sqlserver"]'), matrix.profile)
69-
run: |
70-
docker-compose up -d
71-
7251
- name: Setup latest dependencies
7352
working-directory: fal/projects/adapter/integration_tests
7453
run: |
@@ -140,17 +119,3 @@ jobs:
140119
fi
141120
142121
behave $BEHAVE_TAGS -fplain -D profile=${{ matrix.profile }} --no-capture
143-
144-
- name: Send custom JSON data to Slack workflow
145-
if: (failure() || cancelled()) && github.event_name == 'schedule'
146-
id: slack
147-
uses: slackapi/[email protected]
148-
with:
149-
# For posting a rich message using Block Kit
150-
payload: |
151-
{
152-
"text": "Integration tests failed for dbt-${{ matrix.profile }}@${{ matrix.dbt }} (Python ${{ matrix.python }})\nhttps://github.com/fal-ai/fal/actions/runs/${{ github.run_id }}"
153-
}
154-
env:
155-
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
156-
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK

.github/workflows/test_integration_cli.yml

Lines changed: 3 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,6 @@ on:
2727
options:
2828
- "<ALL>"
2929
- postgres
30-
- fal
31-
- bigquery
32-
- snowflake
33-
- duckdb
3430

3531
python:
3632
description: Python version to test with
@@ -52,7 +48,7 @@ on:
5248
options:
5349
- "<ALL>"
5450
- "latest"
55-
- "1.5.*"
51+
- "1.5.9"
5652

5753
jobs:
5854
matrix-adapter:
@@ -64,13 +60,9 @@ jobs:
6460
shell: python
6561
run: |
6662
OPTIONS = [
67-
'postgres',
68-
'fal'
69-
# 'bigquery',
70-
# 'snowflake',
63+
'postgres'
7164
]
7265
EXTRA_OPTIONS = [
73-
# 'duckdb',
7466
]
7567
OUTPUT = OPTIONS
7668
@@ -167,7 +159,7 @@ jobs:
167159
shell: python
168160
run: |
169161
OPTIONS = [
170-
"1.5.*",
162+
"1.5.9",
171163
]
172164
OUTPUT = OPTIONS
173165
@@ -247,18 +239,3 @@ jobs:
247239
fi
248240
249241
behave $BEHAVE_TAGS -fplain -D profile=${{ matrix.profile }} --no-capture
250-
251-
- name: Send custom JSON data to Slack workflow
252-
if: false
253-
# if: (failure() || cancelled()) && github.event_name == 'schedule'
254-
id: slack
255-
uses: slackapi/[email protected]
256-
with:
257-
# For posting a rich message using Block Kit
258-
payload: |
259-
{
260-
"text": "Integration tests failed for dbt-${{ matrix.profile }}@${{ matrix.dbt }} (Python ${{ matrix.python }})\nhttps://github.com/fal-ai/fal/actions/runs/${{ github.run_id }}"
261-
}
262-
env:
263-
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
264-
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK

0 commit comments

Comments
 (0)