Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/prestocpp-linux-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
prestocpp-linux-build-engine:
runs-on: ubuntu-22.04
container:
image: prestodb/presto-native-dependency:0.290-20241014120930-e1fc090
image: prestodb/presto-native-dependency:0.291-20250108164449-87d82ed
env:
CCACHE_DIR: "${{ github.workspace }}/ccache"
steps:
Expand Down Expand Up @@ -40,6 +40,12 @@ jobs:
- name: Zero ccache statistics
run: ccache -sz

- name: Remove files not needed for the build
run: |
find . -name data | xargs rm -r
find . -name tests | xargs rm -r
find . -name test | xargs rm -rf

- name: Build engine
run: |
source /opt/rh/gcc-toolset-12/enable
Expand Down
Loading