Skip to content

Commit 1359881

Browse files
committed
[HSTACK] Enable build action run
1 parent 3be6774 commit 1359881

File tree

1 file changed

+17
-8
lines changed

1 file changed

+17
-8
lines changed

.github/workflows/build.yml

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,8 @@
1717

1818
name: Python Release Build
1919
on:
20-
pull_request:
21-
branches: ["main"]
2220
push:
23-
tags: ["*-rc*"]
24-
branches: ["branch-*"]
21+
branches: ["main*"]
2522

2623
jobs:
2724
build:
@@ -43,10 +40,10 @@ jobs:
4340
run: uv sync --dev --no-install-package datafusion
4441

4542
# Update output format to enable automatic inline annotations.
46-
- name: Run Ruff
47-
run: |
48-
uv run --no-project ruff check --output-format=github python/
49-
uv run --no-project ruff format --check python/
43+
# - name: Run Ruff
44+
# run: |
45+
# uv run --no-project ruff check --output-format=github python/
46+
# uv run --no-project ruff format --check python/
5047

5148
generate-license:
5249
runs-on: ubuntu-latest
@@ -174,6 +171,10 @@ jobs:
174171
runs-on: ubuntu-latest
175172
steps:
176173
- uses: actions/checkout@v4
174+
- uses: awalsh128/cache-apt-pkgs-action@latest
175+
with:
176+
packages: libssl3 openssl
177+
version: 1.0
177178
- run: rm LICENSE.txt
178179
- name: Download LICENSE.txt
179180
uses: actions/download-artifact@v4
@@ -203,6 +204,10 @@ jobs:
203204
runs-on: ubuntu-latest
204205
steps:
205206
- uses: actions/checkout@v4
207+
- uses: awalsh128/cache-apt-pkgs-action@latest
208+
with:
209+
packages: libssl3 openssl
210+
version: 1.0
206211
- run: rm LICENSE.txt
207212
- name: Download LICENSE.txt
208213
uses: actions/download-artifact@v4
@@ -233,6 +238,10 @@ jobs:
233238
runs-on: ubuntu-latest
234239
steps:
235240
- uses: actions/checkout@v4
241+
- uses: awalsh128/cache-apt-pkgs-action@latest
242+
with:
243+
packages: libssl3 openssl
244+
version: 1.0
236245
- run: rm LICENSE.txt
237246
- name: Download LICENSE.txt
238247
uses: actions/download-artifact@v4

0 commit comments

Comments
 (0)