@@ -97,44 +97,44 @@ jobs:
9797 ./configure
9898 make check-doc
9999
100- proto-test :
101- name : Protocol Test Config
102- runs-on : ubuntu-22.04
103- timeout-minutes : 300
104- needs : [smoke-test]
105- strategy :
106- fail-fast : true
107- matrix :
108- include :
109- - {compiler: clang, db: sqlite3}
110- - {compiler: gcc, db: postgres}
111- steps :
112- - name : Checkout
113- 114- - name : Build and run
115- run : |
116- docker build -f contrib/docker/Dockerfile.ubuntu -t cln-ci-ubuntu .
117- docker run -e ARCH=${{ matrix.arch }} \
118- -e COMPILER=${{ matrix.compiler }} \
119- -e DB=${{ matrix.db }} \
120- -e NETWORK=${{ matrix.network }} \
121- -e TARGET_HOST=${{ matrix.TARGET_HOST }} \
122- -e VALGRIND=${{ matrix.valgrind }} \
123- -e DEVELOPER=1 \
124- -e EXPERIMENTAL_FEATURES=1 \
125- -e COMPAT=0 \
126- -e PYTEST_PAR=2 \
127- -e PYTEST_OPTS="--timeout=300" \
128- -e TEST_CMD="make check-protos" \
129- -e TEST_GROUP=1 \
130- -e TEST_GROUP_COUNT=1 \
131- cln-ci-ubuntu
132- - name : Upload Unit Test Results
133- if : always()
134- uses : actions/upload-artifact@v2
135- with :
136- name : Junit Report ${{ github.run_number }}.{{ matrix.cfg }}
137- path : report.*
100+ # proto-test:
101+ # name: Protocol Test Config
102+ # runs-on: ubuntu-22.04
103+ # timeout-minutes: 300
104+ # needs: [smoke-test]
105+ # strategy:
106+ # fail-fast: true
107+ # matrix:
108+ # include:
109+ # - {compiler: clang, db: sqlite3}
110+ # - {compiler: gcc, db: postgres}
111+ # steps:
112+ # - name: Checkout
113+ 114+ # - name: Build and run
115+ # run: |
116+ # docker build -f contrib/docker/Dockerfile.ubuntu -t cln-ci-ubuntu .
117+ # docker run -e ARCH=${{ matrix.arch }} \
118+ # -e COMPILER=${{ matrix.compiler }} \
119+ # -e DB=${{ matrix.db }} \
120+ # -e NETWORK=${{ matrix.network }} \
121+ # -e TARGET_HOST=${{ matrix.TARGET_HOST }} \
122+ # -e VALGRIND=${{ matrix.valgrind }} \
123+ # -e DEVELOPER=1 \
124+ # -e EXPERIMENTAL_FEATURES=1 \
125+ # -e COMPAT=0 \
126+ # -e PYTEST_PAR=2 \
127+ # -e PYTEST_OPTS="--timeout=300" \
128+ # -e TEST_CMD="make check-protos" \
129+ # -e TEST_GROUP=1 \
130+ # -e TEST_GROUP_COUNT=1 \
131+ # cln-ci-ubuntu
132+ # - name: Upload Unit Test Results
133+ # if: always()
134+ # uses: actions/upload-artifact@v2
135+ # with:
136+ # name: Junit Report ${{ github.run_number }}.{{ matrix.cfg }}
137+ # path: report.*
138138
139139 normal-test :
140140 name : Normal Test Config ${{ matrix.cfg }}
0 commit comments