Remove selective builds (#1639)

Selective builds breaks my ability to require that checks pass before
merging. It's not worth the bite for very few docs-only PRs, given
github limitations on needing to skip INDIVIDUAL JOB STEPS on required
CI jobs.

Maybe we should move to gitlab 💀
This commit is contained in:
Matt
2024-12-18 21:32:22 -08:00
committed by GitHub
parent 7cba7b432d
commit 66f369f3a9
6 changed files with 4 additions and 45 deletions

View File

@@ -6,16 +6,8 @@ on:
branches: [ master ]
tags:
- 'v*'
paths:
- '**'
- '!docs/**'
- '.github/**'
pull_request:
branches: [ master ]
paths:
- '**'
- '!docs/**'
- '.github/**'
merge_group:
jobs:

View File

@@ -6,16 +6,8 @@ on:
branches: [ master ]
tags:
- 'v*'
paths:
- '**'
- '!docs/**'
- '.github/**'
pull_request:
branches: [ master ]
paths:
- '**'
- '!docs/**'
- '.github/**'
merge_group:
concurrency:

View File

@@ -6,16 +6,8 @@ on:
branches: [ master ]
tags:
- 'v*'
paths:
- '**'
- '!docs/**'
- '.github/**'
pull_request:
branches: [ master ]
paths:
- '**'
- '!docs/**'
- '.github/**'
merge_group:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages

View File

@@ -3,14 +3,8 @@ name: PhotonVision Sphinx Documentation Checks
on:
push:
branches: [ master ]
paths:
- 'docs/**'
- '.github/**'
pull_request:
branches: [ master ]
paths:
- 'docs/**'
- '.github/**'
merge_group:
env:

View File

@@ -8,16 +8,8 @@ on:
branches: [ master ]
tags:
- 'v*'
paths:
- '**'
- '!docs/**'
- '.github/**'
pull_request:
branches: [ master ]
paths:
- '**'
- '!docs/**'
- '.github/**'
merge_group:
jobs:

View File

@@ -26,17 +26,14 @@ package frc.robot;
import static org.junit.Assert.fail;
import java.util.List;
import org.junit.Test;
import org.photonvision.timesync.TimeSyncSingleton;
import edu.wpi.first.math.geometry.Pose3d;
import edu.wpi.first.math.geometry.Rotation2d;
import java.util.List;
import org.junit.Test;
import org.photonvision.PhotonCamera;
import org.photonvision.simulation.PhotonCameraSim;
import org.photonvision.simulation.SimCameraProperties;
import org.photonvision.PhotonCamera;
import org.photonvision.timesync.TimeSyncSingleton;
public class JniLoadTest {
@Test