-
Notifications
You must be signed in to change notification settings - Fork 284
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
TravisCi Web enterprise merge. #2814
Open
SebastianKarpetaDev
wants to merge
54
commits into
master
Choose a base branch
from
dt-e3-0-update
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+307
−73
Open
Changes from all commits
Commits
Show all changes
54 commits
Select commit
Hold shift + click to select a range
1e6b9a2
Update OS for enterprise ship:docker
DamianSzymanski 5b613ab
security updates (#2607)
GbArc a295ba5
gem updates (#2609)
GbArc 3fe76b3
app management url and installation check update (#2610)
GbArc 0096d05
docker fix+trivy
GbArc 659da26
trivy fix
GbArc a61611b
Gem update 280721 (#2626)
GbArc ab6dd38
update to use latest docker
GbArc a05bd04
github apps management url update (#2648)
GbArc 57b7f23
sharing envs to forks (#2679)
GbArc 8c7910f
removed user management button
GbArc a8df3a3
removed stripe script for enterprise
GbArc f97e687
upgrade-gems (#2677)
makemp 87ac658
gem updates (#2702)
GbArc b9621c4
rack update -> 2.2.3.1
GbArc a68bf27
up trivy cmd
GbArc d50f9e6
BSFY-141 merge - add restarted by (#2726)
GbArc d6dca64
reduce image size (#2732)
GbArc df54ddb
logs merge from master (#2748)
GbArc 04a2ee9
sinatra 2.2.3 (#2753)
GbArc b7a5f29
fix for missing repo migration count max value. Fix for invalid org i…
GbArc 01aeb68
review and add orgs link fix
GbArc cbd8d92
managing email subscriptions for whole org
gbarc-dt 55923b0
test/lint fixes
gbarc-dt d74fe51
removed resubscribe list
gbarc-dt b20420b
maintenance mode (#2771)
GbArc a4f5614
dockerfile corrected
gbarc-dt 36153db
Supp-718
mkdtravis ce6f416
Cherry pick restarted by feature (#2789)
piccadilly-circus a2ae888
Added log limit using env var (#2792)
piccadilly-circus 3543d26
Random failing tests (#2793)
piccadilly-circus 984dc45
repo tooltips + trigger build closing (#2798)
GbArc a00dcc6
TravisCI Web merge. Enterprise to master.
aa70ef1
TravisCI Web merge. Enterprise to master.
6a4be41
TravisCI Web merge. Enterprise to master.
1d915c9
TravisCI Web. Removing changes from package.json.
3064a32
TravisCI Admin v2. Issue with double keys in JS.
4bfa8ad
TravisCI Web. Rollback import.
f893716
TravisCI Web. Import skip.
591fd1d
TravisCI Web. Removing duplicated method.
dfcabcd
lint fix
gbarc-dt 1a8f4f1
ruby v corrected ship:docker
gbarc-dt d39a1db
fixes / ship:docker
gbarc-dt 0e4ff0f
dbg ship:docker
gbarc-dt a27c9c7
dbg ship:docker
gbarc-dt e092bf7
focal ship:docker
gbarc-dt abc8399
log-scanner config change ship:docker
gbarc-dt 2ef27f9
rm subs ship:docker
gbarc-dt 1dbc73f
typo ship:docker
gbarc-dt d380af1
publicmode fix ship:docker
gbarc-dt 7e8ff28
endpointPortfolio from env
gbarc-dt 5141c73
rmdbg
gbarc-dt 746154e
lint fix
gbarc-dt 1c3abc7
removed duplicate
gbarc-dt File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ tmp | |
# dependencies | ||
bower_components | ||
node_modules | ||
tests | ||
|
||
# misc | ||
.env* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
FROM ruby:3.2.2 as build | ||
|
||
LABEL maintainer Travis CI GmbH <[email protected]> | ||
|
||
ENV NPM_CONFIG_LOGLEVEL info | ||
ENV NODE_VERSION 10.7.0 | ||
ENV YARN_VERSION 0.22.0 | ||
|
||
RUN ( \ | ||
groupadd --gid 1000 node \ | ||
&& useradd --uid 1000 --gid node --shell /bin/bash --create-home node; \ | ||
curl --version;) | ||
RUN ( \ | ||
curl -SLOv "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \ | ||
&& tar -xJf "node-v$NODE_VERSION-linux-x64.tar.xz" -C /usr/local --strip-components=1 \ | ||
&& ln -s /usr/local/bin/node /usr/local/bin/nodejs; ) | ||
RUN ( \ | ||
curl -fSL -o yarn.js "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js" \ | ||
&& mv yarn.js /usr/local/bin/yarn \ | ||
&& chmod +x /usr/local/bin/yarn; \ | ||
mkdir -p /app; \ | ||
) | ||
COPY package.json /app | ||
COPY package-lock.json /app | ||
COPY . /app | ||
|
||
WORKDIR /app | ||
|
||
RUN (\ | ||
npm install --silent -g ember-cli; \ | ||
npm ci; \ | ||
ember build --environment=production; \ | ||
ls -l /app; \ | ||
ls -l /app/dist; \ | ||
) | ||
|
||
FROM ruby:3.2.2-slim | ||
|
||
LABEL maintainer Travis CI GmbH <[email protected]> | ||
|
||
RUN ( \ | ||
gem install bundler:2.3.7; \ | ||
bundle config --global frozen 1; \ | ||
mkdir -p /app/dist; \ | ||
) | ||
|
||
WORKDIR /app | ||
|
||
COPY --from=build /app/dist/ /app/dist/ | ||
COPY --from=build /app/maintenance/ /app/maintenance/ | ||
COPY Gemfile* /app/ | ||
COPY waiter /app/waiter | ||
COPY public /app/public | ||
COPY ssl /app/ssl | ||
|
||
RUN (\ | ||
|
||
cp -a public/* dist/; \ | ||
rm -rf public; \ | ||
apt-get update ; \ | ||
apt-get upgrade -y ; \ | ||
apt-get install -y --no-install-recommends git make gcc g++ libpq-dev libjemalloc-dev xz-utils; \ | ||
rm -rf /var/lib/apt/lists/*; \ | ||
bundle install --without assets development test; \ | ||
sed -i "/stripe.com\/v3/d" /app/dist/index.html; \ | ||
apt-get remove -y gcc g++ make git perl xz-utils && apt-get -y autoremove; \ | ||
) | ||
|
||
|
||
CMD ["bundle", "exec", "puma", "-I", "lib", "-p", "${PORT:-4000}", "-t", "${PUMA_MIN_THREADS:-8}:${PUMA_MAX_THREADS:-12}", "-w", "${PUMA_WORKERS:-2}", "--preload", "waiter/config.ru" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why is it removed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Goo question, probably merge issue. Exists on master. Done.