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

Change jenkins agent #156

Merged
merged 4 commits into from
Jan 4, 2024
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/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18
go-version: 1.20

- name: Download docker-compose file
run: |
Expand Down
6 changes: 3 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ def gitBranch = env.BRANCH_NAME
def gitURL = "[email protected]:Memphisdev/memphis.go.git"
def repoUrlPrefix = "memphisos"

node ("small-ec2-fleet") {
node ("memphis-jenkins-small-fleet-agent") {
git credentialsId: 'main-github', url: gitURL, branch: gitBranch
if (env.BRANCH_NAME ==~ /(master)/) {
versionTag = readFile "./version-beta.conf"
Expand All @@ -13,8 +13,8 @@ node ("small-ec2-fleet") {

try{
stage ('Install GoLang') {
sh 'wget -q https://go.dev/dl/go1.18.4.linux-amd64.tar.gz'
sh 'sudo tar -C /usr/local -xzf go1.18.4.linux-amd64.tar.gz'
sh 'wget -q https://go.dev/dl/go1.20.12.linux-amd64.tar.gz'
sh 'sudo tar -C /usr/local -xzf go1.20.12.linux-amd64.tar.gz'
}

stage('Deploy GO SDK') {
Expand Down
Loading