Skip to content

Commit

Permalink
Le sigh
Browse files Browse the repository at this point in the history
  • Loading branch information
davisp committed Feb 17, 2025
1 parent 6323471 commit 1e803a8
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
- name: Set Version Variable
id: set-version
run: |
cd repos/tiledb
cd ~/repos/tiledb
hash=$( git rev-parse --short HEAD )
version=${{ matrix.version }}
if [ "x${{ matrix.build_shared_libs }}" == "xOFF"]; then
Expand All @@ -92,7 +92,7 @@ jobs:
shell: bash
# - name: Configure TileDB
# run: |
# cd repos/tiledb
# cd ~/repos/tiledb
# cmake -S . -B build \
# -DCMAKE_BUILD_TYPE=Release \
# -DBUILD_SHARED_LIBS=ON \
Expand All @@ -112,20 +112,20 @@ jobs:
env:
TILEDB_PACKAGE_VERSION: ${{ steps.set-version.outputs.release_version }}
run: |
cd repos/tiledb
cd ~/repos/tiledb
mkdir build
touch build/tiledb-${{ matrix.platform }}-${{ env.TILEDB_PACKAGE_VERSION }}.tar.gz*
shell: bash
# run: |
# cd repos/tiledb
# cd ~/repos/tiledb
# cmake --build build -j4 --config Release --target package
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: release-${{ matrix.platform }}
path: |
repos/tiledb/build/tiledb-*.tar.gz*
repos/tiledb/build/tiledb-*.zip*
~/repos/tiledb/build/tiledb-*.tar.gz*
~/repos/tiledb/build/tiledb-*.zip*
publish:
needs:
Expand Down Expand Up @@ -169,6 +169,7 @@ jobs:
generate-releases-csv:
needs:
- publish
name: Generate Release List
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -194,6 +195,7 @@ jobs:
file_glob: true

create-issue-on-fail:
name: "Create Issue on Failure"
permissions:
issues: write
runs-on: ubuntu-latest
Expand Down

0 comments on commit 1e803a8

Please sign in to comment.