Fix: add obfuscation handling for dependencies in ColumnDepends #1002
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: release-tests | |
| on: [push, pull_request] | |
| jobs: | |
| check-tarball: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: dtolnay/rust-toolchain@stable | |
| id: toolchain | |
| - name: Cache cargo registry | |
| uses: actions/cache@v5 | |
| with: | |
| path: ~/.cargo/registry | |
| key: ${{ runner.os }}-cargo-registry-${{ steps.toolchain.outputs.cachekey }}-${{ hashFiles('**/Cargo.lock') }} | |
| - name: Update apt repos | |
| run: sudo apt-get update -y | |
| - name: Install uuid-dev | |
| run: sudo apt-get install -y uuid-dev | |
| - name: make a release tarball and build from it | |
| run: | | |
| cmake -S. -Bbuild && | |
| make -Cbuild package_source && | |
| tar -xf build/task-*.tar.gz && | |
| cd task-*.*.* && | |
| cmake -S. -Bbuild && | |
| cmake --build build --target task_executable |