forked from twindb/undrop-for-innodb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrating to GitHub workflow (twindb#37)
* packages for undrop-for-innodb * update license * cosmic is not lts, so skip it * Create FUNDING.yml * Test compilation success * Bump rubyzip from 1.2.2 to 1.3.0 in /omnibus-undrop-for-innodb Bumps [rubyzip](https://github.com/rubyzip/rubyzip) from 1.2.2 to 1.3.0. - [Release notes](https://github.com/rubyzip/rubyzip/releases) - [Changelog](https://github.com/rubyzip/rubyzip/blob/master/Changelog.md) - [Commits](rubyzip/rubyzip@v1.2.2...v1.3.0) Signed-off-by: dependabot[bot] <support@github.com> * Update docs * remove commercial support * since the blog is offline remove links to it, too * Bump json from 2.2.0 to 2.3.1 in /omnibus-undrop-for-innodb Bumps [json](https://github.com/flori/json) from 2.2.0 to 2.3.1. - [Release notes](https://github.com/flori/json/releases) - [Changelog](https://github.com/flori/json/blob/master/CHANGES.md) - [Commits](ruby/json@v2.2.0...v2.3.1) Signed-off-by: dependabot[bot] <support@github.com> * Update README.md * Update README.md * Update README.md re-enable gitter * Bump jmespath from 1.4.0 to 1.6.2 in /omnibus-undrop-for-innodb Bumps [jmespath](https://github.com/trevorrowe/jmespath.rb) from 1.4.0 to 1.6.2. - [Release notes](https://github.com/trevorrowe/jmespath.rb/releases) - [Changelog](https://github.com/jmespath/jmespath.rb/blob/main/CHANGELOG.md) - [Commits](jmespath/jmespath.rb@v1.4.0...v1.6.2) --- updated-dependencies: - dependency-name: jmespath dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> * Build package for jammy and focal (twindb#36) * Build package for jammy and focal * Remove previous packaging attempt --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
cccdb19
commit 63b8aea
Showing
21 changed files
with
919 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[bumpversion] | ||
current_version = 2.0.0 | ||
commit = True | ||
tag = False | ||
|
||
[bumpversion:file:omnibus-undrop-for-innodb/config/projects/undrop-for-innodb.rb] | ||
search = build_version '{current_version}' | ||
replace = build_version '{new_version}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# These are supported funding model platforms | ||
|
||
github: [akuzminsky] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,4 @@ innochecksum_changer | |
lex.yy.c | ||
sql_parser.c | ||
stream_parser | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
*.gem | ||
.bundle | ||
.kitchen/ | ||
.kitchen.local.yml | ||
vendor/bundle | ||
pkg/* | ||
.vagrant | ||
bin/* | ||
files/**/cache/ | ||
vendor/cookbooks |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
driver: | ||
name: vagrant | ||
forward_agent: yes | ||
customize: | ||
cpus: 2 | ||
memory: 2048 | ||
synced_folders: | ||
- ['.', '/home/vagrant/undrop-for-innodb'] | ||
|
||
provisioner: | ||
name: chef_zero | ||
|
||
platforms: | ||
- name: centos-6 | ||
run_list: yum-epel::default | ||
- name: centos-7 | ||
run_list: yum-epel::default | ||
- name: debian-8 | ||
run_list: apt::default | ||
- name: debian-9 | ||
run_list: apt::default | ||
- name: freebsd-10 | ||
run_list: freebsd::portsnap | ||
- name: freebsd-11 | ||
run_list: freebsd::portsnap | ||
- name: ubuntu-14.04 | ||
run_list: apt::default | ||
- name: ubuntu-16.04 | ||
run_list: apt::default | ||
- name: ubuntu-18.04 | ||
run_list: apt::default | ||
|
||
suites: | ||
- name: default | ||
run_list: omnibus::default | ||
attributes: | ||
omnibus: | ||
build_user: vagrant | ||
build_user_group: vagrant | ||
build_user_password: vagrant | ||
install_dir: /opt/undrop-for-innodb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
source 'https://supermarket.chef.io' | ||
|
||
cookbook 'omnibus' | ||
|
||
# Uncomment to use the latest version of the Omnibus cookbook from GitHub | ||
# cookbook 'omnibus', github: 'chef-cookbooks/omnibus' | ||
|
||
group :integration do | ||
cookbook 'apt', '~> 2.8' | ||
cookbook 'freebsd', '~> 0.3' | ||
cookbook 'yum-epel', '~> 0.6' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
source 'https://rubygems.org' | ||
|
||
# Install omnibus | ||
gem 'omnibus', '~> 9.0' | ||
|
||
# Use Chef's software definitions. It is recommended that you write your own | ||
# software definitions, but you can clone/fork Chef's to get you started. | ||
# gem 'omnibus-software', github: 'chef/omnibus-software' | ||
|
||
# This development group is installed by default when you run `bundle install`, | ||
# but if you are using Omnibus in a CI-based infrastructure, you do not need | ||
# the Test Kitchen-based build lab. You can skip these unnecessary dependencies | ||
# by running `bundle install --without development` to speed up build times. | ||
group :development do | ||
# Use Berkshelf for resolving cookbook dependencies | ||
gem 'berkshelf' | ||
|
||
# Use Test Kitchen with Vagrant for converging the build environment | ||
gem 'test-kitchen' | ||
gem 'kitchen-vagrant' | ||
end |
Oops, something went wrong.