|
51 | 51 | with: |
52 | 52 | driver: docker |
53 | 53 |
|
| 54 | + - name: Build tinybuild-base |
| 55 | + uses: docker/build-push-action@v2 |
| 56 | + with: |
| 57 | + context: ./tinybuild-base |
| 58 | + tags: | |
| 59 | + ${{ env.DOCKER_REGISTRY }}/tinybuild-base:latest |
| 60 | + ${{ env.DOCKER_REGISTRY }}/tinybuild-base:${{ env.VERSION_TAG }} |
| 61 | + build-args: | |
| 62 | + DOCKER_REGISTRY=${{ env.DOCKER_REGISTRY }} |
| 63 | +
|
| 64 | + - name: Build tinybuild-arm |
| 65 | + uses: docker/build-push-action@v2 |
| 66 | + with: |
| 67 | + context: ./tinybuild-arm |
| 68 | + tags: | |
| 69 | + ${{ env.DOCKER_REGISTRY }}/tinybuild-arm:latest |
| 70 | + ${{ env.DOCKER_REGISTRY }}/tinybuild-arm:${{ env.VERSION_TAG }} |
| 71 | + build-args: | |
| 72 | + DOCKER_REGISTRY=${{ env.DOCKER_REGISTRY }} |
| 73 | +
|
| 74 | + - name: Build tinybuild-avr |
| 75 | + uses: docker/build-push-action@v2 |
| 76 | + with: |
| 77 | + context: ./tinybuild-avr |
| 78 | + tags: | |
| 79 | + ${{ env.DOCKER_REGISTRY }}/tinybuild-avr:latest |
| 80 | + ${{ env.DOCKER_REGISTRY }}/tinybuild-avr:${{ env.VERSION_TAG }} |
| 81 | + build-args: | |
| 82 | + DOCKER_REGISTRY=${{ env.DOCKER_REGISTRY }} |
| 83 | +
|
| 84 | + - name: Build tinybuild-msp430 |
| 85 | + uses: docker/build-push-action@v2 |
| 86 | + with: |
| 87 | + context: ./tinybuild-msp430 |
| 88 | + tags: | |
| 89 | + ${{ env.DOCKER_REGISTRY }}/tinybuild-msp430:latest |
| 90 | + ${{ env.DOCKER_REGISTRY }}/tinybuild-msp430:${{ env.VERSION_TAG }} |
| 91 | + build-args: | |
| 92 | + DOCKER_REGISTRY=${{ env.DOCKER_REGISTRY }} |
| 93 | +
|
| 94 | + - name: Build tinybuild-native32 |
| 95 | + uses: docker/build-push-action@v2 |
| 96 | + with: |
| 97 | + context: ./tinybuild-native32 |
| 98 | + tags: | |
| 99 | + ${{ env.DOCKER_REGISTRY }}/tinybuild-native32:latest |
| 100 | + ${{ env.DOCKER_REGISTRY }}/tinybuild-native32:${{ env.VERSION_TAG }} |
| 101 | + build-args: | |
| 102 | + DOCKER_REGISTRY=${{ env.DOCKER_REGISTRY }} |
| 103 | +
|
| 104 | + - name: Build tinybuild-native64 |
| 105 | + uses: docker/build-push-action@v2 |
| 106 | + with: |
| 107 | + context: ./tinybuild-native64 |
| 108 | + tags: | |
| 109 | + ${{ env.DOCKER_REGISTRY }}/tinybuild-native64:latest |
| 110 | + ${{ env.DOCKER_REGISTRY }}/tinybuild-native64:${{ env.VERSION_TAG }} |
| 111 | + build-args: | |
| 112 | + DOCKER_REGISTRY=${{ env.DOCKER_REGISTRY }} |
| 113 | +
|
| 114 | + - name: Build tinybuild-risc-v |
| 115 | + uses: docker/build-push-action@v2 |
| 116 | + with: |
| 117 | + context: ./tinybuild-risc-v |
| 118 | + tags: | |
| 119 | + ${{ env.DOCKER_REGISTRY }}/tinybuild-risc-v:latest |
| 120 | + ${{ env.DOCKER_REGISTRY }}/tinybuild-risc-v:${{ env.VERSION_TAG }} |
| 121 | + build-args: | |
| 122 | + DOCKER_REGISTRY=${{ env.DOCKER_REGISTRY }} |
| 123 | +
|
54 | 124 | - name: Build riotdocker-base |
55 | 125 | uses: docker/build-push-action@v2 |
56 | 126 | with: |
|
0 commit comments