@@ -15,46 +15,46 @@ concurrency:
1515 group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
1616 cancel-in-progress : true
1717jobs :
18- build-and-xref :
19- name : Build and Xref
20- strategy :
21- fail-fast : false
22- matrix :
23- erlang_version :
24- - ' 26'
25- - ' 27'
26- elixir_version :
27- - ' 1.17'
28- # @todo Add macOS and Windows.
29- runs-on : ubuntu-latest
30- timeout-minutes : 60
31- steps :
32- - name : CHECKOUT REPOSITORY
33- uses : actions/checkout@v4
18+ # build-and-xref:
19+ # name: Build and Xref
20+ # strategy:
21+ # fail-fast: false
22+ # matrix:
23+ # erlang_version:
24+ # - '26'
25+ # - '27'
26+ # elixir_version:
27+ # - '1.17'
28+ # # @todo Add macOS and Windows.
29+ # runs-on: ubuntu-latest
30+ # timeout-minutes: 60
31+ # steps:
32+ # - name: CHECKOUT REPOSITORY
33+ # uses: actions/checkout@v4
3434
35- - name : FETCH TAGS
36- run : git fetch --tags
35+ # - name: FETCH TAGS
36+ # run: git fetch --tags
3737
38- - name : SETUP OTP & ELIXIR
39- 40- with :
41- otp-version : ${{ matrix.erlang_version }}
42- elixir-version : ${{ matrix.elixir_version }}
43- hexpm-mirrors : |
44- https://builds.hex.pm
45- https://cdn.jsdelivr.net/hex
38+ # - name: SETUP OTP & ELIXIR
39+ 40+ # with:
41+ # otp-version: ${{ matrix.erlang_version }}
42+ # elixir-version: ${{ matrix.elixir_version }}
43+ # hexpm-mirrors: |
44+ # https://builds.hex.pm
45+ # https://cdn.jsdelivr.net/hex
4646
47- - name : SANITY CHECK (rabbit)
48- run : make -C deps/rabbit parallel-ct-sanity-check
47+ # - name: SANITY CHECK (rabbit)
48+ # run: make -C deps/rabbit parallel-ct-sanity-check
4949
50- - name : SANITY CHECK (rabbitmq_mqtt)
51- run : make -C deps/rabbitmq_mqtt parallel-ct-sanity-check
50+ # - name: SANITY CHECK (rabbitmq_mqtt)
51+ # run: make -C deps/rabbitmq_mqtt parallel-ct-sanity-check
5252
53- - name : BUILD
54- run : make
53+ # - name: BUILD
54+ # run: make
5555
56- - name : XREF
57- run : make xref
56+ # - name: XREF
57+ # run: make xref
5858
5959 test :
6060 name : Test
0 commit comments