Skip to content
Closed
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
40 changes: 20 additions & 20 deletions .github/workflows/linux-build-base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ jobs:
adapters:
name: Linux release with adapters
# prevent errors when forks ff their main branch
if: ${{ github.repository == 'facebookincubator/velox' }}
runs-on: 8-core-ubuntu-22.04
if: true
runs-on: ubuntu-22.04
container: ghcr.io/facebookincubator/velox-dev:adapters
defaults:
run:
Expand Down Expand Up @@ -68,10 +68,10 @@ jobs:
mv ./${MINIO_BINARY} /usr/local/bin/
fi

- uses: assignUser/stash/restore@v1
with:
path: '${{ env.CCACHE_DIR }}'
key: ccache-linux-adapters-${{ inputs.use-clang && 'clang' || 'gcc' }}
# - uses: assignUser/stash/restore@v1
# with:
# path: '${{ env.CCACHE_DIR }}'
# key: ccache-linux-adapters-${{ inputs.use-clang && 'clang' || 'gcc' }}

- name: "Zero Ccache Statistics"
run: |
Expand Down Expand Up @@ -106,10 +106,10 @@ jobs:
- name: Ccache after
run: ccache -s

- uses: assignUser/stash/save@v1
with:
path: '${{ env.CCACHE_DIR }}'
key: ccache-linux-adapters-${{ inputs.use-clang && 'clang' || 'gcc' }}
# - uses: assignUser/stash/save@v1
# with:
# path: '${{ env.CCACHE_DIR }}'
# key: ccache-linux-adapters-${{ inputs.use-clang && 'clang' || 'gcc' }}

- name: Run Tests
# Some of the adapters dependencies are in the 'adapters' conda env
Expand All @@ -122,7 +122,7 @@ jobs:
ctest -j 8 --label-exclude cuda_driver --output-on-failure --no-tests=error

ubuntu-debug:
runs-on: 8-core-ubuntu-22.04
runs-on: ubuntu-22.04
# prevent errors when forks ff their main branch
if: ${{ github.repository == 'facebookincubator/velox' }}
name: "Ubuntu debug with resolve_dependency"
Expand All @@ -135,11 +135,11 @@ jobs:
working-directory: velox
steps:

- name: Get Ccache Stash
uses: assignUser/stash/restore@v1
with:
path: '${{ env.CCACHE_DIR }}'
key: ccache-ubuntu-debug-default-${{ inputs.use-clang && 'clang' || 'gcc' }}
# - name: Get Ccache Stash
# uses: assignUser/stash/restore@v1
# with:
# path: '${{ env.CCACHE_DIR }}'
# key: ccache-ubuntu-debug-default-${{ inputs.use-clang && 'clang' || 'gcc' }}

- name: Ensure Stash Dirs Exists
working-directory: ${{ github.workspace }}
Expand Down Expand Up @@ -172,10 +172,10 @@ jobs:
run: |
ccache -vs

- uses: assignUser/stash/save@v1
with:
path: '${{ env.CCACHE_DIR }}'
key: ccache-ubuntu-debug-default-${{ inputs.use-clang && 'clang' || 'gcc' }}
# - uses: assignUser/stash/save@v1
# with:
# path: '${{ env.CCACHE_DIR }}'
# key: ccache-ubuntu-debug-default-${{ inputs.use-clang && 'clang' || 'gcc' }}

- name: Run Tests
run: |
Expand Down
Loading