Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion .github/workflows/update-catalyst-ci-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ jobs:
uses: ./.github/workflows/update-catalyst-deps.yml
with:
notify_type: ${{ github.event_name == 'workflow_dispatch' && inputs.notify_type || 'pr' }}
repos: ${{ inputs.repos != '' && inputs.repos || 'input-output-hk/catalyst-voices, input-output-hk/hermes, input-output-hk/catalyst-libs, input-output-hk/catalyst-reviews, input-output-hk/catalyst-som, input-output-hk/catalyst-execution, input-output-hk/norns' }}
repos: ${{ inputs.repos != '' && inputs.repos || 'input-output-hk/catalyst-voices, input-output-hk/hermes, input-output-hk/catalyst-libs, input-output-hk/catalyst-reviews, input-output-hk/catalyst-som, input-output-hk/catalyst-execution, input-output-hk/norns, input-output-hk/catalyst-qa' }}
secrets: inherit
13 changes: 5 additions & 8 deletions earthly/flutter/installer/Earthfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
VERSION 0.8

# cspell: words Rxxxx
# cspell: ignoreRegExp lib[f-x]

# An AWS S3 bucket is used to store browser and driver packages.
# Packages are updated automatically once a week.
Expand Down Expand Up @@ -79,8 +78,9 @@ INSTALL_FIREFOX_LINUX64:

RUN curl -sSL -o /tmp/firefox.zip ${FIREFOX_URL} \
&& unzip /tmp/firefox.zip -d /tmp \
&& gdebi -n /tmp/firefox*.deb \
&& rm -f /tmp/firefox.deb
&& FAILED_PACKAGES=""; for p in /tmp/*.deb; do gdebi -n "$p" || FAILED_PACKAGES="$FAILED_PACKAGES $p"; done; \
if [ -n "$FAILED_PACKAGES" ]; then for p in $FAILED_PACKAGES; do gdebi -n "$p" || echo "Installation failed"; done; fi \
&& rm -f /tmp/*
RUN firefox --version

RUN printf "${BLUE} Installing Geckodriver..."
Expand Down Expand Up @@ -126,11 +126,8 @@ INSTALL_CHROMIUM:
RUN printf "${BLUE} Installing ${PACKAGE_TYPE} version: ${version}..." \
&& curl -sSL -o /opt/${PACKAGE_TYPE}.zip ${DOWNLOAD_URL} \
&& unzip /opt/${PACKAGE_TYPE}.zip -d /opt/${PACKAGE_TYPE} \
&& gdebi -n /opt/${PACKAGE_TYPE}/libx*.deb \
&& gdebi -n /opt/${PACKAGE_TYPE}/libf*.deb \
&& gdebi -n /opt/${PACKAGE_TYPE}/libo*.deb \
&& gdebi -n /opt/${PACKAGE_TYPE}/chromium-common*.deb \
&& gdebi -n /opt/${PACKAGE_TYPE}/chromium_*.deb \
&& FAILED_PACKAGES=""; for p in /opt/${PACKAGE_TYPE}/*.deb; do gdebi -n "$p" || FAILED_PACKAGES="$FAILED_PACKAGES $p"; done; \
if [ -n "$FAILED_PACKAGES" ]; then for p in $FAILED_PACKAGES; do gdebi -n "$p" || echo "Installation failed"; done; fi \
&& rm -rf /opt/${PACKAGE_TYPE}*
ELSE
RUN printf "${BLUE} Installing ${PACKAGE_TYPE} version: ${version}..." \
Expand Down
Loading