Skip to content

Commit

Permalink
Test Release workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
teo-tsirpanis committed Oct 9, 2024
1 parent 2773914 commit 684cf05
Showing 1 changed file with 8 additions and 15 deletions.
23 changes: 8 additions & 15 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
name: Release

on:
pull_request:
branches:
- dev
- 'release-*'
- '*'
push:
branches:
- dev
- 'release-*'
- '*'
tags:
- '*'

Expand All @@ -14,6 +20,7 @@ jobs:
matrix:
os: [ubuntu-20.04]
runs-on: ${{ matrix.os }}
if: false
steps:
- name: Checkout TileDB
uses: actions/checkout@v3
Expand Down Expand Up @@ -41,11 +48,7 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [macos-arm64, macos-x86_64, linux-x86_64, linux-x86_64-noavx2, windows-x86_64]
include:
- platform: windows-x86_64
os: windows-2019
triplet: x64-windows-release
- platform: linux-x86_64
os: ubuntu-20.04
manylinux: true
Expand All @@ -55,19 +58,9 @@ jobs:
cmake_args: -DCOMPILER_SUPPORTS_AVX2=OFF
triplet: x64-linux-release
manylinux: true
- platform: macos-x86_64
os: macos-12
MACOSX_DEPLOYMENT_TARGET: 11
triplet: x64-osx-release
- platform: macos-arm64
os: macos-12
cmake_args: -DCMAKE_OSX_ARCHITECTURES=arm64
MACOSX_DEPLOYMENT_TARGET: 11
triplet: arm64-osx-release
runs-on: ${{ matrix.os }}
container: ${{ matrix.manylinux && 'quay.io/pypa/manylinux2014_x86_64' || '' }}
env:
MACOSX_DEPLOYMENT_TARGET: ${{ matrix.MACOSX_DEPLOYMENT_TARGET }}
VCPKG_BINARY_SOURCES: 'clear;x-gha,readwrite'
# Manylinux does not support Node 20 due to libc incompatibility. Temporarily opt out.
# https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
Expand Down Expand Up @@ -199,7 +192,7 @@ jobs:
issues: write
runs-on: ubuntu-latest
needs: Publish-Release
if: (failure() || cancelled()) && github.event_name != 'workflow_dispatch'
if: false && (failure() || cancelled()) && github.event_name != 'workflow_dispatch'
steps:
# The open-issue action requires to clone the repository.
- name: Checkout TileDB
Expand Down

0 comments on commit 684cf05

Please sign in to comment.