Skip to content

Commit 896b126

Browse files
committed
remove jira-cli
1 parent 0385394 commit 896b126

2 files changed

Lines changed: 0 additions & 9 deletions

File tree

Dockerfile

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,5 @@ COPY vscode-*.json /usr/local/etc/uceap-dev
4949
# # So instead we download the latest precompiled binary for our cpu architecture:
5050
RUN curl -sL $(curl -s https://api.github.com/repos/atuinsh/atuin/releases/latest | jq -r '.assets[] | select(.name == "atuin-'`uname -m`'-unknown-linux-gnu.tar.gz") | .browser_download_url') | tar zx --no-same-owner --wildcards --absolute-names --transform 's,[^/]*,/usr/local/bin,' '*/atuin'
5151

52-
# Install the jira-cli precompiled binary for our cpu architecture:
53-
# FIXME use latest release instead, see atuin example above
54-
RUN curl -sL https://github.com/ankitpokhrel/jira-cli/releases/download/v1.5.1/jira_1.5.1_linux_`uname -m | sed s/aarch64/arm64/`.tar.gz | tar zx --no-same-owner --wildcards --absolute-names --transform 's,[^/]*,/usr/local,' '*/bin/jira'
55-
5652
# Our base image has an ancient version of gh cli in apt, so we download the latest version instead
5753
RUN curl -sL $(curl -s https://api.github.com/repos/cli/cli/releases/latest | jq -r '.assets[] | select(.name | endswith("_linux_'`uname -m | sed s/aarch64/arm64/ | sed s/x86_64/amd64/`'.tar.gz")) | .browser_download_url') | tar zx --no-same-owner --wildcards --absolute-names --transform 's,[^/]*,/usr/local,' '*/gh'

uceap-drupal-dev-post-create

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,6 @@ if [[ -n "$GH_TOKEN" ]] || [[ -n "$GITHUB_TOKEN" ]] ; then
1010
gh extension install github/gh-copilot
1111
fi
1212

13-
# Setup Jira
14-
if [[ -n "$JIRA_API_TOKEN" ]] && [[ -n "$JIRA_EMAIL" ]] && [[ -n "$JIRA_PROJECT_KEY" ]] && [[ -n "$JIRA_BOARD" ]] ; then
15-
jira init --installation cloud --server https://uceapit.atlassian.net --auth-type basic --login "$JIRA_EMAIL" --project "$JIRA_PROJECT_KEY" --board "$JIRA_BOARD"
16-
fi
17-
1813
# set global ServerName so that apachectl isn't chatty
1914
if [[ -n "$CODESPACE_NAME" ]]; then
2015
SERVER_NAME="$CODESPACE_NAME-8080.app.github.dev"

0 commit comments

Comments
 (0)