|
26 | 26 | password: ${{ secrets.DOCKER_PASSWORD }} |
27 | 27 | if: ${{ github.repository_owner == 'wpilibsuite' && github.ref == 'refs/heads/main' }} |
28 | 28 | - run: make UBUNTU=${{ matrix.ubuntu-version }} push |
29 | | - if: ${{ github.repository_owner == 'wpilibsuite' && github.ref == 'refs/heads/main' }} |
| 29 | + if: ${{ github.repository_owner == 'wpilibsuite' && github.ref == 'refs/heads/main' }} |
| 30 | + |
| 31 | + build-ds: |
| 32 | + name: Build Driver Station |
| 33 | + runs-on: ubuntu-latest |
| 34 | + steps: |
| 35 | + - uses: actions/checkout@v4 |
| 36 | + - run: make update/ds |
| 37 | + - run: make build/ds |
| 38 | + - name: Log in to docker |
| 39 | + uses: docker/login-action@v3 |
| 40 | + with: |
| 41 | + username: ${{ secrets.DOCKER_USERNAME }} |
| 42 | + password: ${{ secrets.DOCKER_PASSWORD }} |
| 43 | + if: ${{ github.repository_owner == 'wpilibsuite' && github.ref == 'refs/heads/main' }} |
| 44 | + - run: make push/ds |
| 45 | + if: ${{ github.repository_owner == 'wpilibsuite' && github.ref == 'refs/heads/main' }} |
| 46 | + |
| 47 | + build-arm-ds: |
| 48 | + name: Build Driver Station Arm |
| 49 | + runs-on: ubuntu-24.04-arm |
| 50 | + steps: |
| 51 | + - uses: actions/checkout@v4 |
| 52 | + - run: make update/armds |
| 53 | + - run: make build/armds |
| 54 | + - name: Log in to docker |
| 55 | + uses: docker/login-action@v3 |
| 56 | + with: |
| 57 | + username: ${{ secrets.DOCKER_USERNAME }} |
| 58 | + password: ${{ secrets.DOCKER_PASSWORD }} |
| 59 | + if: ${{ github.repository_owner == 'wpilibsuite' && github.ref == 'refs/heads/main' }} |
| 60 | + - run: make push/armds |
| 61 | + if: ${{ github.repository_owner == 'wpilibsuite' && github.ref == 'refs/heads/main' }} |
30 | 62 |
|
31 | 63 | build-arm: |
32 | 64 | name: Build ARM |
|
46 | 78 | password: ${{ secrets.DOCKER_PASSWORD }} |
47 | 79 | if: ${{ github.repository_owner == 'wpilibsuite' && github.ref == 'refs/heads/main' }} |
48 | 80 | - run: make UBUNTU=${{ matrix.debian-version }} push/arm-base |
49 | | - if: ${{ github.repository_owner == 'wpilibsuite' && github.ref == 'refs/heads/main' }} |
| 81 | + if: ${{ github.repository_owner == 'wpilibsuite' && github.ref == 'refs/heads/main' }} |
50 | 82 |
|
51 | 83 | build-minimal: |
52 | 84 | name: Build Minimal |
|
0 commit comments