Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AD-721] resolve linux build error #68

Merged
merged 15 commits into from
Apr 29, 2022
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
### Additional Reviewers
@affonsoBQ
@alexey-temnikov
@alinaliBQ
alinaliBQ marked this conversation as resolved.
Show resolved Hide resolved
@andiem-bq
@birschick-bq
<!-- Any additional reviewers -->
4 changes: 2 additions & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ on: [pull_request]

jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
alinaliBQ marked this conversation as resolved.
Show resolved Hide resolved

steps:
- uses: actions/checkout@v2
- uses: ZedThree/clang-tidy-review@v0.7.0
- uses: ZedThree/clang-tidy-review@v0.8.3
id: review
continue-on-error: true
7 changes: 7 additions & 0 deletions .github/workflows/linux-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,13 @@ jobs:
check_name: "Ubuntu 20.04 Build Unit Test Results Check"
comment_title: "Ubuntu 20.04 Build Unit Test Results"
files: ./odbc_test_result.xml

birschick-bq marked this conversation as resolved.
Show resolved Hide resolved
- name: clang-tidy-check
alinaliBQ marked this conversation as resolved.
Show resolved Hide resolved
uses: ZedThree/[email protected]
id: review
# If there are any comments, fail the check
if: steps.review.outputs.total_comments > 0
run: exit 1

build-linux-docker-image:
runs-on: ubuntu-20.04
Expand Down
2 changes: 1 addition & 1 deletion docker/linux-environment/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:latest
FROM ubuntu:20.04

#set DEBIAN_FRONTEND=noninteractive to ignore user prompt
ENV DEBIAN_FRONTEND=noninteractive
Expand Down