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

Fix Tests on New CI #843

Merged
merged 26 commits into from
Jun 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
89f5dd6
Remove non-root user
TimPansino Jun 22, 2023
e430abb
Test new CI image
TimPansino Jun 22, 2023
4fffb31
Change pypy to pypy27 in tox.
TimPansino Jun 22, 2023
25add74
Fix checkout logic
TimPansino Jun 22, 2023
479b764
Fetch git tags properly
TimPansino Jun 22, 2023
d062a6e
Pin tox requires
TimPansino Jun 22, 2023
430bc25
Adjust default db settings for github actions
TimPansino Jun 22, 2023
877b380
Rename elasticsearch services
TimPansino Jun 22, 2023
87b9ce3
Merge remote-tracking branch 'origin/main' into fix-tests-for-new-ci
TimPansino Jun 23, 2023
88c13c7
Reset to new pipelines
TimPansino Jun 23, 2023
0338cbc
[Mega-Linter] Apply linters fixes
TimPansino Jun 23, 2023
cbf41f3
Fix timezone
TimPansino Jun 23, 2023
abe65c6
Fix docker networking
TimPansino Jun 23, 2023
d46236b
Pin dev image to new sha
TimPansino Jun 23, 2023
6a234af
Standardize gearman DB settings
TimPansino Jun 23, 2023
2e03372
Fix elasticsearch settings bug
TimPansino Jun 23, 2023
da338fc
Fix gearman bug
TimPansino Jun 23, 2023
712926a
Add missing odbc headers
TimPansino Jun 23, 2023
507d27a
Add more debug messages
TimPansino Jun 23, 2023
d9a1ac2
Swap out dev ci image
TimPansino Jun 23, 2023
907633f
Fix required virtualenv version
TimPansino Jun 23, 2023
1441bdb
Swap out dev ci image
TimPansino Jun 23, 2023
967c82e
Swap out dev ci image
TimPansino Jun 23, 2023
014431c
Remove aioredis v1 for EOL
TimPansino Jun 23, 2023
3fa18ed
Add coverage paths for docker container
TimPansino Jun 23, 2023
6e4c496
Unpin ci container
TimPansino Jun 23, 2023
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
7 changes: 6 additions & 1 deletion .github/containers/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,13 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
libssl-dev \
locales \
make \
odbc-postgresql \
openssl \
python2-dev \
python3-dev \
python3-pip \
odbc-postgresql \
tzdata \
unixodbc-dev \
unzip \
wget \
zip \
Expand All @@ -58,6 +60,9 @@ RUN sed -i 's/Driver=psqlodbca.so/Driver=\/usr\/lib\/x86_64-linux-gnu\/odbc\/psq
# Set the locale
RUN locale-gen --no-purge en_US.UTF-8
ENV LANG=en_US.UTF-8 \ LANGUAGE=en_US:en \ LC_ALL=en_US.UTF-8
ENV TZ="Etc/UTC"
RUN ln -fs "/usr/share/zoneinfo/${TZ}" /etc/localtime && \
dpkg-reconfigure -f noninteractive tzdata

# Use root user
ENV HOME /root
Expand Down
2 changes: 1 addition & 1 deletion .github/containers/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pip
setuptools
wheel
virtualenv<20.22.1
virtualenv<20.22.0
tox
Loading
Loading