Migrate secrets to credentials #340
Merged
Travis CI / Travis CI - Pull Request
succeeded
Oct 20, 2023 in 5m 26s
Build Passed
The build passed, just like the previous build.
Details
This is a pull request build.
It is running a build against the merge commit, after merging #340 Migrate secrets to credentials.
Any changes that have been made to the main branch before the build ran are also included.
Jobs and Stages
This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.
Build Configuration
Build Option | Setting |
---|---|
Language | Ruby |
Operating System | Linux (Focal) |
Ruby Version | 3.2.2 |
Build Configuration
{
"language": "ruby",
"os": [
"linux"
],
"dist": "focal",
"rvm": [
"3.2.2"
],
"cache": {
"bundler": true
},
"notifications": {
"email": [
{
"enabled": false
}
]
},
"services": [
"xvfb"
],
"addons": {
"postgresql": "12",
"chrome": "stable",
"apt": {
"update": true,
"packages": [
"postgresql-12",
"google-chrome-stable"
]
}
},
"env": [
"global={:PGUSER=>\"postgres\"}={:PGPORT=>\"5432\"}={:PGHOST=>\"localhost\"}"
],
"before_install": [
"sudo apt-get -y install libsndfile-dev",
"sudo sed -i -e '/local.*peer/s/postgres/all/' -e 's/peer\\|md5/trust/g' /etc/postgresql/*/main/pg_hba.conf",
"sudo service postgresql restart",
"sleep 1",
"postgres --version",
"psql -c 'create database phishin_test;' -U postgres",
"gem update --system --no-document",
"gem install bundler --no-document"
],
"install": [
"bundle install",
"yarn install"
],
"script": [
"bundle exec rubocop",
"bundle exec rails assets:precompile",
"bundle exec rspec"
],
"after_script": [
"./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT"
],
"branches": {
"only": [
"main"
]
}
}
Loading