|
| 1 | +name: Build Silabs Examples apps |
| 2 | + |
| 3 | +on: |
| 4 | + push: |
| 5 | + branches: |
| 6 | + - main |
| 7 | + - "release_*" |
| 8 | + pull_request: |
| 9 | + branches: |
| 10 | + - main |
| 11 | + - "release_*" |
| 12 | + workflow_dispatch: |
| 13 | + |
| 14 | +concurrency: |
| 15 | + group: silabs-build-examples-${{ github.ref }} |
| 16 | + cancel-in-progress: true |
| 17 | + |
| 18 | +jobs: |
| 19 | + build-lighting-app: |
| 20 | + name: Build Lighting-App variations |
| 21 | + uses: ./.github/workflows/silabs-common-build.yaml |
| 22 | + with: |
| 23 | + example-app: "lighting-app" |
| 24 | + output-directory: "./out/lighting-app" |
| 25 | + |
| 26 | + build-air-quality-sensor-app: |
| 27 | + name: Build Air-Quality-Sensor-App variations |
| 28 | + uses: ./.github/workflows/silabs-common-build.yaml |
| 29 | + with: |
| 30 | + example-app: "air-quality-sensor-app" |
| 31 | + output-directory: "./out/air-quality-sensor-app" |
| 32 | + |
| 33 | + build-dishwasher-app: |
| 34 | + name: Build Dishwasher-App variations |
| 35 | + uses: ./.github/workflows/silabs-common-build.yaml |
| 36 | + with: |
| 37 | + example-app: "dishwasher-app" |
| 38 | + output-directory: "./out/dishwasher-app" |
| 39 | + |
| 40 | + build-light-switch-app: |
| 41 | + name: Build Light-Switch-App variations |
| 42 | + uses: ./.github/workflows/silabs-common-build.yaml |
| 43 | + with: |
| 44 | + example-app: "light-switch-app" |
| 45 | + output-directory: "./out/light-switch-app" |
| 46 | + |
| 47 | + build-lock-app: |
| 48 | + name: Build Lock-App variations |
| 49 | + uses: ./.github/workflows/silabs-common-build.yaml |
| 50 | + with: |
| 51 | + example-app: "lock-app" |
| 52 | + output-directory: "./out/lock-app" |
| 53 | + |
| 54 | + build-thermostat: |
| 55 | + name: Build Thermostat variations |
| 56 | + uses: ./.github/workflows/silabs-common-build.yaml |
| 57 | + with: |
| 58 | + example-app: "thermostat" |
| 59 | + output-directory: "./out/thermostat" |
| 60 | + |
| 61 | + build-pump-app: |
| 62 | + name: Build Pump-App variations |
| 63 | + uses: ./.github/workflows/silabs-common-build.yaml |
| 64 | + with: |
| 65 | + example-app: "pump-app" |
| 66 | + output-directory: "./out/pump-app" |
| 67 | + |
| 68 | + build-window-app: |
| 69 | + name: Build Window-App variations |
| 70 | + uses: ./.github/workflows/silabs-common-build.yaml |
| 71 | + with: |
| 72 | + example-app: "window-app" |
| 73 | + output-directory: "./out/window-app" |
| 74 | + |
| 75 | + build-smoke-co-alarm: |
| 76 | + name: Build Smoke-CO-Alarm variations |
| 77 | + uses: ./.github/workflows/silabs-common-build.yaml |
| 78 | + with: |
| 79 | + example-app: "smoke-co-alarm-app" |
| 80 | + output-directory: "./out/smoke-co-alarm-app" |
| 81 | + |
| 82 | + build-lit-icd-app: |
| 83 | + name: Build Lit-ICD-App variations |
| 84 | + uses: ./.github/workflows/silabs-common-build.yaml |
| 85 | + with: |
| 86 | + example-app: "lit-icd-app" |
| 87 | + output-directory: "./out/lit-icd-app" |
| 88 | + |
| 89 | + build-refrigerator-app: |
| 90 | + name: Build Refrigerator-App variations |
| 91 | + uses: ./.github/workflows/silabs-common-build.yaml |
| 92 | + with: |
| 93 | + example-app: "refrigerator-app" |
| 94 | + output-directory: "./out/refrigerator-app" |
| 95 | + |
| 96 | + build-fan-control-app: |
| 97 | + name: Build Fan-Control-App variations |
| 98 | + uses: ./.github/workflows/silabs-common-build.yaml |
| 99 | + with: |
| 100 | + example-app: "fan-control-app" |
| 101 | + output-directory: "./out/fan-control-app" |
| 102 | + |
| 103 | + build-multi-sensor-app: |
| 104 | + name: Build Multi-Sensor-App variations |
| 105 | + uses: ./.github/workflows/silabs-common-build.yaml |
| 106 | + with: |
| 107 | + example-app: "multi-sensor-app" |
| 108 | + output-directory: "./out/multi-sensor-app" |
| 109 | + |
| 110 | + build-onoff-plug-app: |
| 111 | + name: Build OnOff-Plug-App variations |
| 112 | + uses: ./.github/workflows/silabs-common-build.yaml |
| 113 | + with: |
| 114 | + example-app: "onoff-plug-app" |
| 115 | + output-directory: "./out/onoff-plug-app" |
| 116 | + |
| 117 | + build-tempalte-app: |
| 118 | + name: Build Template-App variations |
| 119 | + uses: ./.github/workflows/silabs-common-build.yaml |
| 120 | + with: |
| 121 | + example-app: "template" |
| 122 | + output-directory: "./out/template-app" |
0 commit comments