@@ -28,25 +28,25 @@ jobs:
2828 setup :
2929 uses : ./.github/workflows/setup.yml
3030
31- test :
32- needs : setup
33- runs-on : ${{ fromJSON(needs.setup.outputs.runner-labels)[matrix.os] }}
34- strategy :
35- matrix :
36- os : ${{ fromJSON(needs.setup.outputs.available-runners) }}
37- timeout-minutes : 15
38- steps :
39- - uses : actions/checkout@v6
40- - uses : actions/setup-go@v6
41- with :
42- go-version : ${{ env.GO_VERSION }}
43- - name : Install zlib static on AL2 ARM instances
44- if : matrix.os == 'al2-arm'
45- run : dnf install zlib-static.aarch64 -y
46- - run : make
47- - run : make test-with-coverage
48- - name : Show test coverage
49- run : make show-test-coverage
31+ # test:
32+ # needs: setup
33+ # runs-on: ${{ fromJSON(needs.setup.outputs.runner-labels)[matrix.os] }}
34+ # strategy:
35+ # matrix:
36+ # os: ${{ fromJSON(needs.setup.outputs.available-runners) }}
37+ # timeout-minutes: 15
38+ # steps:
39+ # - uses: actions/checkout@v6
40+ # - uses: actions/setup-go@v6
41+ # with:
42+ # go-version: ${{ env.GO_VERSION }}
43+ # - name: Install zlib static on AL2 ARM instances
44+ # if: matrix.os == 'al2-arm'
45+ # run: dnf install zlib-static.aarch64 -y
46+ # - run: make
47+ # - run: make test-with-coverage
48+ # - name: Show test coverage
49+ # run: make show-test-coverage
5050
5151 integration :
5252 needs : setup
7272 if [[ "${{ matrix.os }}" == "ubuntu-x86" ]]; then
7373 SKIP_SYSTEMD_TESTS=1
7474 fi
75- SKIP_SYSTEMD_TESTS=$SKIP_SYSTEMD_TESTS make integration-with-coverage
76- - name : Show test coverage
77- run : make show-integration-coverage
75+ SKIP_SYSTEMD_TESTS=$SKIP_SYSTEMD_TESTS GO_TEST_FLAGS="-count 1 -run TestConvert/convert_and_replace" make integration
76+ # - name: Show test coverage
77+ # run: make show-integration-coverage
0 commit comments