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

Sweep: modify the travis ci file to enable travis ci in the repository #44

Closed
wwzeng1 opened this issue Jun 14, 2023 · 1 comment · May be fixed by #45
Closed

Sweep: modify the travis ci file to enable travis ci in the repository #44

wwzeng1 opened this issue Jun 14, 2023 · 1 comment · May be fixed by #45
Labels
sweep Assigns Sweep to an issue or pull request.

Comments

@wwzeng1
Copy link

wwzeng1 commented Jun 14, 2023

No description provided.

@sweep-ai sweep-ai bot added the sweep Assigns Sweep to an issue or pull request. label Jun 14, 2023
@sweep-ai
Copy link

sweep-ai bot commented Jun 14, 2023

Hey @wwzeng1,

I've started working on the PR to enable Travis CI in the repository. I'll be creating a .travis.yml file with the appropriate language and commands for the build process. Give me a minute!

Some code snippets I looked at (click to expand). If some file is missing from here, you can mention the path in the ticket description.

environment:

hello-ci/solano.yml

Lines 1 to 7 in 3fe2ae0

# config/solano.yml
---
golang:
golang_version: 1.5
tests:
- pwd
- ls

hello-ci/caicloud.yml

Lines 1 to 14 in 3fe2ae0

services:
mongo:
image: mongo
integration:
image: golang:1.5
environment:
- GO15VENDOREXPERIMENT=1
- GOOS=linux
- GOARCH=amd64
- CGO_ENABLED=0
commands:
- pwd
- ls

hello-ci/wercker.yml

Lines 1 to 44 in 3fe2ae0

# This references the default golang container from
# the Docker Hub: https://registry.hub.docker.com/u/library/golang/
# If you want Google's container you would reference google/golang
# Read more about containers on our dev center
# http://devcenter.wercker.com/docs/containers/index.html
box: golang
# This is the build pipeline. Pipelines are the core of wercker
# Read more about pipelines on our dev center
# http://devcenter.wercker.com/docs/pipelines/index.html
# You can also use services such as databases. Read more on our dev center:
# http://devcenter.wercker.com/docs/services/index.html
# services:
# - postgres
# http://devcenter.wercker.com/docs/services/postgresql.html
# - mongodb
# http://devcenter.wercker.com/docs/services/mongodb.html
build:
# The steps that will be executed on build
# Steps make up the actions in your pipeline
# Read more about steps on our dev center:
# http://devcenter.wercker.com/docs/steps/index.html
steps:
# Sets the go workspace and places you package
# at the right place in the workspace tree
- setup-go-workspace
# Gets the dependencies
- script:
name: pwd
code: |
pwd
# Build the project
- script:
name: ls
code: |
ls
# Test the project
- script:
name: go run
code: |

FROM busybox


I'm a bot that handles simple bugs and feature requests but I might make mistakes. Please be kind!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
sweep Assigns Sweep to an issue or pull request.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant