Skip to content
Open
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
24 changes: 12 additions & 12 deletions .github/workflows/ci-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,23 @@ name: CI
# - 3.9 : Part of Matrix with NumPy dispatch
# - 3.10 : Part of Matrix

on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- main
pull_request:
branches:
- main
# on:
# # Trigger the workflow on push or pull request,
# # but only for the main branch
# push:
# branches:
# - main
# pull_request:
# branches:
# - main

jobs:
lint_and_typecheck:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Cancel previous
uses: styfle/cancel-workflow-action@0.10.0
uses: styfle/cancel-workflow-action@0.12.0
with:
access_token: ${{ github.token }}
if: ${{github.ref != 'refs/head/main'}}
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
use-latest-jaxlib: false
steps:
- name: Cancel previous
uses: styfle/cancel-workflow-action@0.10.0
uses: styfle/cancel-workflow-action@0.12.0
with:
access_token: ${{ github.token }}
if: ${{github.ref != 'refs/head/main'}}
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
python-version: [3.7]
steps:
- name: Cancel previous
uses: styfle/cancel-workflow-action@0.10.0
uses: styfle/cancel-workflow-action@0.12.0
with:
access_token: ${{ github.token }}
if: ${{github.ref != 'refs/head/main'}}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly-ci-multiprocess-gpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ name: Nightly JAX CI on NVIDIA GPUs

# Controls when the workflow will run
on:
schedule:
- cron: "0 12 * * *" # Daily at 12:00 UTC
# schedule:
# - cron: "0 12 * * *" # Daily at 12:00 UTC
workflow_dispatch: # allows triggering the workflow run manually
pull_request: # Automatically trigger on pull requests affecting this file
branches:
Expand Down