Skip to content

Commit a9ae7bc

Browse files
committed
build needs elixir
1 parent 0144735 commit a9ae7bc

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
strategy:
1010
matrix:
1111
PLATFORM:
12-
- { RMQREF: "v4.0.x", ERLVER: "26.2" }
13-
- { RMQREF: "v4.1.x", ERLVER: "27" }
14-
name: "Broker: ${{ matrix.PLATFORM.RMQREF }} - Erlang: ${{ matrix.PLATFORM.ERLVER }}"
12+
- { RMQREF: "v4.0.x", ERLVER: "26.2", ELXVER: "1.16" }
13+
- { RMQREF: "v4.1.x", ERLVER: "27", ELXVER: "1.18" }
14+
name: "Broker: ${{ matrix.PLATFORM.RMQREF }} - Erlang: ${{ matrix.PLATFORM.ERLVER }} - Elixir: ${{ matrix.PLATFORM.ELXVER }}"
1515
steps:
1616
- name: Checkout RabbitMQ Server
1717
uses: actions/checkout@v4
@@ -26,13 +26,14 @@ jobs:
2626
uses: erlef/setup-beam@v1
2727
with:
2828
otp-version: ${{ matrix.PLATFORM.ERLVER }}
29+
elixir-version: ${{ matrix.PLATFORM.ELXVER }}
2930
- name: Build distribution files
3031
working-directory: ${{ env.PLUGIN_FOLDER }}
3132
run: |
3233
make dist RABBITMQ_VERSION=${{ matrix.PLATFORM.RMQREF }} MIX_ENV=prod DIST_AS_EZS=yes
3334
- name: Store build artifacts
3435
uses: actions/upload-artifact@v4
3536
with:
36-
name: plugins-ocpp-rmq${{ matrix.PLATFORM.RMQREF }}-erl${{ matrix.PLATFORM.ERLVER }}
37+
name: plugins-ocpp-rmq${{ matrix.PLATFORM.RMQREF }}-erl${{ matrix.PLATFORM.ERLVER }}-elx${{ matrix.PLATFORM.ELXVER }}
3738
path: |
3839
${{ env.PLUGIN_FOLDER }}/plugins/rabbitmq_web_ocpp-[0-9].*.ez

0 commit comments

Comments
 (0)