Skip to content

Commit

Permalink
Debug - output difference
Browse files Browse the repository at this point in the history
  • Loading branch information
gokhangulbiz committed Sep 26, 2023
1 parent ce9da5e commit 750ccf9
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -508,6 +508,11 @@ jobs:
pg_major: << parameters.pg_major >>
- configure
- enable_core
- run:
name: Debug DNS Resolution
command: |
gosu circleci cat /etc/resolv.conf
cat /etc/hosts
- run:
name: 'Run Test'
command: |
Expand Down Expand Up @@ -714,7 +719,6 @@ workflows:
runs: << pipeline.parameters.flaky_test_runs_per_job >>

build_and_test:
when: false
jobs:
- build:
name: build-14
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,14 +187,21 @@ jobs:
runs-on: ubuntu-20.04
container:
image: "${{ matrix.image_name }}:${{ matrix.pg_version }}${{ vars.image_suffix }}"
options: --user root
options: --user root --dns-opt ndots:0
needs:
- build
steps:
- uses: actions/checkout@v3.5.0
- uses: "./.github/actions/setup_extension"
- name: Debug DNS Resolution
run: |-
gosu circleci cat /etc/resolv.conf
echo '---'
cat /etc/hosts
shell: bash
- name: Run Test
run: gosu circleci make -C src/test/${{ matrix.suite }} ${{ matrix.make }}
shell: bash
timeout-minutes: 20
- uses: "./.github/actions/save_logs_and_results"
if: always()
Expand Down

0 comments on commit 750ccf9

Please sign in to comment.