Skip to content

Commit

Permalink
Vcswp 22240 (#56)
Browse files Browse the repository at this point in the history
* Use latest spec and generator

* Upgrade node and ruby deps

* Add Webhook models

* Update CHANGELOG
  • Loading branch information
ngarg-vail authored Jan 9, 2025
1 parent c91296d commit 0db6066
Show file tree
Hide file tree
Showing 440 changed files with 45,680 additions and 16,765 deletions.
26 changes: 26 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
.ruby: &ruby
variables:
LANG: "C.UTF-8"
before_script:
- ruby -v
- bundle config set --local deployment true
- bundle install -j $(nproc)
parallel:
matrix:
- RUBY_VERSION: ['2.7', '3.0', '3.1']
image: "ruby:$RUBY_VERSION"
cache:
paths:
- vendor/ruby
key: 'ruby-$RUBY_VERSION'

gem:
extends: .ruby
script:
- bundle exec rspec
- bundle exec rake build
- bundle exec rake install
artifacts:
paths:
- pkg/*.gem

Loading

0 comments on commit 0db6066

Please sign in to comment.