Skip to content

Commit

Permalink
Release 9.5.0-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
thvu-katalon committed May 24, 2024
1 parent 7655c08 commit 5492f06
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@ on:
push:
branches:
- master
- rel-9.5.0-dev
jobs:
run:
name: Run
runs-on: ubuntu-latest
env:
KS_VERSION: 9.4.0
KS_VERSION_TAG: 9.4.0
KS_VERSION: 9.5.0-dev
KS_VERSION_TAG: 9.5.0-dev
steps:
- name: Checkout
uses: actions/checkout@master
Expand All @@ -21,7 +22,6 @@ jobs:
- name: Prepare
run: |
chmod u+x ./build/*.sh
./build/prevent_overwrite_existing_tag.sh $KS_VERSION
- name: Build
run: |
chmod u+x ./build/*.sh
Expand Down
14 changes: 12 additions & 2 deletions src/scripts/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
set -xe

echo "Install Katalon"
katalon_version="$KATALON_STUDIO_VERSION"
katalon_version=$(cut -d '-' -f 1 <<< "$KATALON_STUDIO_VERSION")
katalon_directory="$version"
katalon_package="Katalon_Studio_Engine_Linux_64-$katalon_version.tar.gz"
katalon_unzipped_directory="Katalon_Studio_Engine_Linux_64-$katalon_version"
# general link
wget -O $katalon_package https://download.katalon.com/$katalon_version/Katalon_Studio_Engine_Linux_64-$katalon_version.tar.gz
wget -O $katalon_package https://download.katalon.com/$KATALON_STUDIO_VERSION/$katalon_package
# beta link
# wget -O $katalon_package https://download.katalon.com/release-beta/$katalon_version/Katalon_Studio_Engine_Linux_64-$katalon_version.tar.gz
ls
Expand All @@ -26,6 +26,16 @@ chmod -R 777 $KATALON_SOFTWARE_DIR
# clean up

echo "Clean up"

# Uninstall gosu
apt-get remove -y gosu

# Remove /opt/gradle
rm -rf /opt/gradle

# Remove webdrivermanager.jar
rm /opt/katalonstudio/configuration/resources/tools/webdriver/webdrivermanager-5.8.0-fat.jar

apt clean all
rm -rf /var/lib/apt/lists/*
cat $KATALON_VERSION_FILE

0 comments on commit 5492f06

Please sign in to comment.