Skip to content

Commit

Permalink
fixed ci/cd, increased version
Browse files Browse the repository at this point in the history
  • Loading branch information
kochetovd committed Jun 20, 2024
1 parent eff0a0f commit 758faba
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Create upload dir
run: |
mkdir -p ../v2
cp current_version_agent install.sh mysqlconfigurer.sh releem-agent-x86_64 releem-agent-amd64 releem-agent-aarch64 releem-agent-freebsd-amd64 ../v2/
cp current_version_agent install.sh mysqlconfigurer.sh releem-agent-x86_64 releem-agent-amd64 releem-agent-aarch64 releem-agent-freebsd-amd64 releem-agent-i686 ../v2/
- uses: shallwefootball/s3-upload-action@master
name: Upload S3 current_version_agent
Expand Down
10 changes: 5 additions & 5 deletions build.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GOOS=linux GOARCH=amd64 go build -o releem-agent-x86_64
GOOS=linux GOARCH=amd64 go build -o releem-agent-amd64
GOOS=linux GOARCH=arm64 go build -o releem-agent-aarch64
GOOS=linux GOARCH=386 go build -o releem-agent-i686
GOOS=freebsd GOARCH=amd64 go build -o releem-agent-freebsd-amd64
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o releem-agent-x86_64
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o releem-agent-amd64
CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -o releem-agent-aarch64
CGO_ENABLED=0 GOOS=linux GOARCH=386 go build -o releem-agent-i686
CGO_ENABLED=0 GOOS=freebsd GOARCH=amd64 go build -o releem-agent-freebsd-amd64
2 changes: 1 addition & 1 deletion config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
)

const (
ReleemAgentVersion = "1.17.0"
ReleemAgentVersion = "1.17.1.1"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion current_version_agent
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.17.0
1.17.1.1
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#!/bin/bash
# install.sh - Version 1.17.0
# install.sh - Version 1.17.1.1
# (C) Releem, Inc 2022
# All rights reserved

# Releem installation script: install and set up the Releem Agent on supported Linux distributions
# using the package manager.

set -e
install_script_version=1.17.0
install_script_version=1.17.1.1
logfile="releem-install.log"

WORKDIR="/opt/releem"
Expand Down
4 changes: 2 additions & 2 deletions mysqlconfigurer.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# mysqlconfigurer.sh - Version 1.17.0
# mysqlconfigurer.sh - Version 1.17.1.1
# (C) Releem, Inc 2022
# All rights reserved

Expand All @@ -12,7 +12,7 @@ MYSQLTUNER_REPORT=$MYSQLCONFIGURER_PATH"mysqltunerreport.json"
RELEEM_MYSQL_VERSION=$MYSQLCONFIGURER_PATH"mysql_version"
MYSQLCONFIGURER_CONFIGFILE="${MYSQLCONFIGURER_PATH}${MYSQLCONFIGURER_FILE_NAME}"
MYSQL_MEMORY_LIMIT=0
VERSION="1.17.0"
VERSION="1.17.1.1"
RELEEM_INSTALL_PATH=$MYSQLCONFIGURER_PATH"install.sh"
logfile="releem-mysqlconfigurer.log"

Expand Down

0 comments on commit 758faba

Please sign in to comment.