Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DEBUG #8048

Closed
wants to merge 15 commits into from
Closed

DEBUG #8048

Show file tree
Hide file tree
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
5 changes: 2 additions & 3 deletions .github/workflows/build_bundle_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
name: Build bundle package

env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
CCACHE_DIR: "${{ github.workspace }}/.ccache"

concurrency:
Expand All @@ -40,7 +39,7 @@ jobs:
runs-on: ubuntu-20.04
container: apache/gluten:vcpkg-centos-7
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Get Ccache
uses: actions/cache/restore@v3
with:
Expand Down Expand Up @@ -70,7 +69,7 @@ jobs:
runs-on: ubuntu-20.04
container: centos:7
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Download All Artifacts
uses: actions/download-artifact@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check_license.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
name: License Header Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Check License Header
run: |
git fetch --recurse-submodules=no origin main ${{github.event.pull_request.base.sha}}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
Expand All @@ -56,7 +56,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
Expand Down
61 changes: 34 additions & 27 deletions .github/workflows/velox_backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ on:
- 'dev/**'

env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
MVN_CMD: 'mvn -ntp'
WGET_CMD: 'wget -nv'
SETUP: 'bash .github/workflows/util/setup_helper.sh'
Expand All @@ -56,27 +55,31 @@ concurrency:
jobs:
build-native-lib-centos-7:
runs-on: ubuntu-20.04
container: apache/gluten:vcpkg-centos-7
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Get Ccache
uses: actions/cache/restore@v3
with:
path: '${{ env.CCACHE_DIR }}'
path: |
'${{ env.CCACHE_DIR }}'
$HOME/.m2/repository
$GITHUB_WORKSPACE/dev/vcpkg/vcpkg_installed
key: ccache-centos7-release-default-${{github.sha}}
restore-keys: |
ccache-centos7-release-default
- name: Build Gluten native libraries
run: |
df -a
cd $GITHUB_WORKSPACE/
bash dev/ci-velox-buildstatic-centos-7.sh
ccache -s
bash tools/gluten-te/centos/examples/buildhere-veloxbe-portable-libs/run-default.sh
- name: "Save ccache"
uses: actions/cache/save@v3
id: ccache
with:
path: '${{ env.CCACHE_DIR }}'
path: |
'${{ env.CCACHE_DIR }}'
$HOME/.m2/repository
$GITHUB_WORKSPACE/dev/vcpkg/vcpkg_installed
key: ccache-centos7-release-default-${{github.sha}}
- uses: actions/upload-artifact@v3
with:
Expand Down Expand Up @@ -116,7 +119,7 @@ jobs:
runs-on: ubuntu-20.04
container: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Download All Native Artifacts
uses: actions/download-artifact@v3
with:
Expand Down Expand Up @@ -187,7 +190,7 @@ jobs:
runs-on: ubuntu-20.04
container: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Download All Native Artifacts
uses: actions/download-artifact@v3
with:
Expand Down Expand Up @@ -269,7 +272,7 @@ jobs:
sudo rm -rf /opt/hostedtoolcache/CodeQL
sudo docker image prune --all --force > /dev/null
df -h
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Download All Native Artifacts
uses: actions/download-artifact@v3
with:
Expand Down Expand Up @@ -384,7 +387,7 @@ jobs:
sudo rm -rf /opt/hostedtoolcache/CodeQL
sudo docker image prune --all --force > /dev/null
df -h
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Download All Native Artifacts
uses: actions/download-artifact@v3
with:
Expand Down Expand Up @@ -425,7 +428,7 @@ jobs:
runs-on: ubuntu-20.04
container: centos:8
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Download All Native Artifacts
uses: actions/download-artifact@v3
with:
Expand Down Expand Up @@ -484,7 +487,7 @@ jobs:
runs-on: ubuntu-20.04
container: ubuntu:22.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Download All Native Artifacts
uses: actions/download-artifact@v3
with:
Expand Down Expand Up @@ -535,7 +538,7 @@ jobs:
runs-on: ubuntu-20.04
container: apache/gluten:centos-8
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
with:
name: velox-native-lib-centos-7-${{github.sha}}
Expand Down Expand Up @@ -577,7 +580,7 @@ jobs:
runs-on: ubuntu-20.04
container: apache/gluten:centos-8
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Download All Artifacts
uses: actions/download-artifact@v3
with:
Expand Down Expand Up @@ -608,7 +611,7 @@ jobs:
runs-on: ubuntu-20.04
container: apache/gluten:centos-8
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Download All Artifacts
uses: actions/download-artifact@v3
with:
Expand Down Expand Up @@ -653,7 +656,7 @@ jobs:
runs-on: ubuntu-20.04
container: apache/gluten:centos-8
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Download All Artifacts
uses: actions/download-artifact@v3
with:
Expand Down Expand Up @@ -685,7 +688,7 @@ jobs:
runs-on: ubuntu-20.04
container: apache/gluten:centos-8
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Download All Artifacts
uses: actions/download-artifact@v3
with:
Expand Down Expand Up @@ -730,7 +733,7 @@ jobs:
runs-on: ubuntu-20.04
container: apache/gluten:centos-8
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Download All Artifacts
uses: actions/download-artifact@v3
with:
Expand Down Expand Up @@ -762,7 +765,7 @@ jobs:
runs-on: ubuntu-20.04
container: apache/gluten:centos-8
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Download All Artifacts
uses: actions/download-artifact@v3
with:
Expand Down Expand Up @@ -806,7 +809,7 @@ jobs:
runs-on: ubuntu-20.04
container: apache/gluten:centos-8
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Download All Artifacts
uses: actions/download-artifact@v3
with:
Expand Down Expand Up @@ -844,7 +847,7 @@ jobs:
runs-on: ubuntu-20.04
container: apache/gluten:centos-8
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Download All Artifacts
uses: actions/download-artifact@v3
with:
Expand Down Expand Up @@ -876,7 +879,7 @@ jobs:
runs-on: ubuntu-20.04
container: apache/gluten:centos-8
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Download All Artifacts
uses: actions/download-artifact@v3
with:
Expand Down Expand Up @@ -913,7 +916,7 @@ jobs:
runs-on: ubuntu-20.04
container: apache/gluten:centos-8
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Download All Artifacts
uses: actions/download-artifact@v3
with:
Expand Down Expand Up @@ -943,11 +946,13 @@ jobs:
runs-on: ubuntu-20.04
container: apache/gluten:centos-8
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Get Ccache
uses: actions/cache/restore@v3
with:
path: '${{ env.CCACHE_DIR }}'
path: |
'${{ env.CCACHE_DIR }}'
$HOME/.m2/repository
key: ccache-centos8-release-default-${{github.sha}}
restore-keys: |
ccache-centos8-release-default
Expand All @@ -960,7 +965,9 @@ jobs:
uses: actions/cache/save@v3
id: ccache
with:
path: '${{ env.CCACHE_DIR }}'
path: |
'${{ env.CCACHE_DIR }}'
$HOME/.m2/repository
key: ccache-centos8-release-default-${{github.sha}}
- name: Run CPP unit test
run: |
Expand Down
28 changes: 18 additions & 10 deletions .github/workflows/velox_backend_cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ on:
- 'main'

env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
CCACHE_DIR: "${{ github.workspace }}/.ccache"

concurrency:
Expand All @@ -31,13 +30,15 @@ concurrency:
jobs:
cache-native-lib-centos-7:
runs-on: ubuntu-20.04
container: apache/gluten:vcpkg-centos-7
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Get Ccache
uses: actions/cache/restore@v3
with:
path: '${{ env.CCACHE_DIR }}'
path: |
'${{ env.CCACHE_DIR }}'
$HOME/.m2/repository
$GITHUB_WORKSPACE/dev/vcpkg/vcpkg_installed
key: ccache-centos7-release-default-${{github.sha}}
restore-keys: |
ccache-centos7-release-default
Expand All @@ -49,18 +50,23 @@ jobs:
uses: actions/cache/save@v3
id: ccache
with:
path: '${{ env.CCACHE_DIR }}'
path: |
'${{ env.CCACHE_DIR }}'
$HOME/.m2/repository
$GITHUB_WORKSPACE/dev/vcpkg/vcpkg_installed
key: ccache-centos7-release-default-${{github.sha}}

cache-native-lib-centos-8:
runs-on: ubuntu-20.04
container: apache/gluten:centos-8
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Get Ccache
uses: actions/cache/restore@v3
with:
path: '${{ env.CCACHE_DIR }}'
path: |
'${{ env.CCACHE_DIR }}'
$HOME/.m2/repository
key: ccache-centos8-release-default-${{github.sha}}
restore-keys: |
ccache-centos8-release-default
Expand All @@ -73,7 +79,9 @@ jobs:
uses: actions/cache/save@v3
id: ccache
with:
path: '${{ env.CCACHE_DIR }}'
path: |
'${{ env.CCACHE_DIR }}'
$HOME/.m2/repository
key: ccache-centos8-release-default-${{github.sha}}

# ccache-native-lib-ubuntu-velox-ut:
Expand All @@ -82,7 +90,7 @@ jobs:
# CCACHE_DIR: "${{ github.workspace }}/.ccache"
# container: ghcr.io/facebookincubator/velox-dev:amd64-ubuntu-22.04-avx
# steps:
# - uses: actions/checkout@v2
# - uses: actions/checkout@v4
# - name: Get Ccache
# uses: actions/cache/restore@v3
# with:
Expand Down Expand Up @@ -114,7 +122,7 @@ jobs:
# CCACHE_DIR: "${{ github.workspace }}/.ccache"
# container: ghcr.io/facebookincubator/velox-dev:centos8
# steps:
# - uses: actions/checkout@v2
# - uses: actions/checkout@v4
# - name: Setup java and maven
# run: |
# yum install sudo patch java-1.8.0-openjdk-devel wget -y && \
Expand Down
7 changes: 2 additions & 5 deletions .github/workflows/velox_weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@ on:
schedule:
- cron: '0 20 * * 0'

env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true

concurrency:
group: ${{ github.repository }}-${{ github.head_ref || github.sha }}-${{ github.workflow }}
cancel-in-progress: true
Expand All @@ -38,7 +35,7 @@ jobs:
runs-on: ubuntu-20.04
container: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Update mirror list
run: |
sed -i -e "s|mirrorlist=|#mirrorlist=|g" /etc/yum.repos.d/CentOS-* || true
Expand Down Expand Up @@ -83,7 +80,7 @@ jobs:
runs-on: ubuntu-20.04
container: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: build
run: |
# To avoid the prompt for region selection during installing tzdata.
Expand Down
2 changes: 1 addition & 1 deletion dev/vcpkg/ports/libelf/portfile.cmake
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
vcpkg_download_distfile(ARCHIVE
URLS "https://ftp.osuosl.org/pub/blfs/conglomeration/libelf/libelf-0.8.13.tar.gz"
URLS "https://fossies.org/linux/misc/old/libelf-0.8.13.tar.gz"
FILENAME "libelf-0.8.13.tar.gz"
SHA512 d2a4ea8ccc0bbfecac38fa20fbd96aefa8e86f8af38691fb6991cd9c5a03f587475ecc2365fc89a4954c11a679d93460ee9a5890693112f6133719af3e6582fe
)
Expand Down
Loading
Loading