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

Official Release 8.6.9 #168

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
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
10 changes: 3 additions & 7 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ name: KatalonDockerCI
on:
push:
branches:
- master
- release-8.6.9
jobs:
run:
name: Run
runs-on: ubuntu-latest
env:
KS_VERSION: 9.3.1
KS_VERSION_TAG: 9.3.1
KS_VERSION: 8.6.9
KS_VERSION_TAG: latest
steps:
- name: Checkout
uses: actions/checkout@master
Expand All @@ -21,13 +21,11 @@ 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
./build/clean.sh $KS_VERSION
./build/build.sh $KS_VERSION
./build/tag.sh $KS_VERSION
- name: Test
run: |
chmod u+x ./test/project/*.sh
Expand All @@ -45,8 +43,6 @@ jobs:
run: |
cd $GITHUB_WORKSPACE
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }} docker.io
./build/tag.sh $KS_VERSION
./build/push.sh $KS_VERSION
./build/tag.sh $KS_VERSION_TAG
./build/push.sh $KS_VERSION_TAG
- name: Slack Notification
Expand Down
9 changes: 8 additions & 1 deletion src/scripts/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ apt -y install gosu
apt -y install psmisc

echo "Install JRE"
apt -y install openjdk-17-jdk
apt -y install openjdk-8-jdk

echo "Install CircleCI tools"
apt -y install git
Expand Down Expand Up @@ -50,6 +50,13 @@ chrome_package='google-chrome-stable_current_amd64.deb'
wget -O $chrome_package https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
dpkg -i $chrome_package || apt -y -f install
rm $chrome_package

symlink="/usr/bin/google-chrome"
if [ -L $symlink ]; then
unlink $symlink
ln -s /opt/google/chrome/google-chrome $symlink
fi

echo "$(google-chrome --version)" >> $KATALON_VERSION_FILE || true

./wrap_chrome_binary.sh && rm -rfv ./wrap_chrome_binary.sh
Expand Down
Loading