-
Notifications
You must be signed in to change notification settings - Fork 21
92 lines (81 loc) · 3.29 KB
/
build-all-parallel.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# This is a faster workflow that parallelizes the jobs in a matrix so
# we can get faster results than waiting for the standard build_all_frc_projects
# powershell script
name: Build all FRC Projects
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
strategy:
fail-fast: false
matrix:
include:
- project-name: 'BasicLatencyCompensation'
directory: 'cpp/BasicLatencyCompensation'
- project-name: 'CANcoder'
directory: 'cpp/CANcoder'
- project-name: 'CommandBasedDrive'
directory: 'cpp/CommandBasedDrive'
- project-name: 'CurrentLimits'
directory: 'cpp/CurrentLimits'
- project-name: 'Falcon500ArcadeDrive'
directory: 'cpp/Falcon500ArcadeDrive'
- project-name: 'FusedCANcoder'
directory: 'cpp/FusedCANcoder'
- project-name: 'MotionMagic'
directory: 'cpp/MotionMagic'
- project-name: 'Pigeon2'
directory: 'cpp/Pigeon2'
- project-name: 'PositionClosedLoop'
directory: 'cpp/PositionClosedLoop'
- project-name: 'Simulation'
directory: 'cpp/Simulation'
- project-name: 'VelocityClosedLoop'
directory: 'cpp/VelocityClosedLoop'
- project-name: 'WaitForAll'
directory: 'cpp/WaitForAll'
- project-name: 'BasicLatencyCompensation'
directory: 'java/BasicLatencyCompensation'
- project-name: 'CANcoder'
directory: 'java/CANcoder'
- project-name: 'CommandBasedDrive'
directory: 'java/CommandBasedDrive'
- project-name: 'ControlRequestLimits'
directory: 'java/ControlRequestLimits'
- project-name: 'CurrentLimits'
directory: 'java/CurrentLimits'
- project-name: 'Falcon500ArcadeDrive'
directory: 'java/Falcon500ArcadeDrive'
- project-name: 'FusedCANcoder'
directory: 'java/FusedCANcoder'
- project-name: 'MotionMagic'
directory: 'java/MotionMagic'
- project-name: 'Pigeon2'
directory: 'java/Pigeon2'
- project-name: 'PositionClosedLoop'
directory: 'java/PositionClosedLoop'
- project-name: 'Simulation'
directory: 'java/Simulation'
- project-name: 'SwerveWithPathPlanner'
directory: 'java/SwerveWithPathPlanner'
- project-name: 'VelocityClosedLoop'
directory: 'java/VelocityClosedLoop'
- project-name: 'WaitForAll'
directory: 'java/WaitForAll'
# The type of runner that the job will run on
runs-on: ubuntu-latest
# This grabs the WPILib docker container
container: wpilib/roborio-cross-ubuntu:2024-22.04
steps:
- uses: actions/checkout@v3
# Grant execute permission for gradlew
- name: Grant execute permission for gradlew
run: cd "${{ matrix.directory }}" && chmod +x gradlew
# Runs a single command using the runners shell
- name: Compile and run tests on robot code for project ${{ matrix.project-name }}
run: cd "${{ matrix.directory }}" && ./gradlew build