Compare commits
6 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7d39a9988b | ||
|
|
176006516d | ||
|
|
cd9ea832a3 | ||
|
|
a1b4ff74a5 | ||
|
|
bffc88c845 | ||
|
|
d34161186d |
6 changed files with 4 additions and 73 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -1,2 +0,0 @@
|
||||||
*.py[oc]
|
|
||||||
tests/generated.py
|
|
||||||
16
Dockerfile
16
Dockerfile
|
|
@ -1,16 +0,0 @@
|
||||||
# A workflow with docker is still uncertain.
|
|
||||||
# Keep watching below file and other module's situation.
|
|
||||||
# https://github.com/container-images/container-image-template/blob/master/Dockerfile.template
|
|
||||||
FROM registry.fedoraproject.org/f26-modular/boltron
|
|
||||||
|
|
||||||
WORKDIR /build
|
|
||||||
COPY . .
|
|
||||||
|
|
||||||
ENV LC_CTYPE C.UTF-8
|
|
||||||
|
|
||||||
RUN dnf -y update
|
|
||||||
RUN dnf -y --nodocs install \
|
|
||||||
ruby \
|
|
||||||
&& dnf -y clean all
|
|
||||||
|
|
||||||
CMD /bin/bash
|
|
||||||
14
Makefile
14
Makefile
|
|
@ -1,14 +0,0 @@
|
||||||
DOCKER_IMAGE=ruby
|
|
||||||
|
|
||||||
default: test
|
|
||||||
|
|
||||||
build-docker:
|
|
||||||
docker build -t $(DOCKER_IMAGE) .
|
|
||||||
|
|
||||||
test-nspawn:
|
|
||||||
MODULE=nspawn $(MAKE) -C tests test
|
|
||||||
|
|
||||||
test-docker: build-docker
|
|
||||||
MODULE=docker URL=docker=$(DOCKER_IMAGE) $(MAKE) -C tests test
|
|
||||||
|
|
||||||
test: test-nspawn test-docker
|
|
||||||
24
ruby.yaml
24
ruby.yaml
|
|
@ -30,37 +30,25 @@ data:
|
||||||
rationale: An interpreter of object-oriented scripting language
|
rationale: An interpreter of object-oriented scripting language
|
||||||
multilib: [x86_64]
|
multilib: [x86_64]
|
||||||
buildorder: 101
|
buildorder: 101
|
||||||
ref: master
|
ref: rawhide
|
||||||
rubygem-abrt:
|
rubygem-abrt:
|
||||||
# From rubygem-abrt.spec Summary
|
# From rubygem-abrt.spec Summary
|
||||||
rationale: >-
|
rationale: >-
|
||||||
ABRT support for Ruby
|
ABRT support for Ruby
|
||||||
buildorder: 102
|
buildorder: 102
|
||||||
ref: master
|
ref: rawhide
|
||||||
rubygem-mysql2:
|
rubygem-mysql2:
|
||||||
# From rubygem-mysql2.spec Summary
|
# From rubygem-mysql2.spec Summary
|
||||||
rationale: >-
|
rationale: >-
|
||||||
A simple, fast Mysql library for Ruby, binding to libmysql
|
A simple, fast Mysql library for Ruby, binding to libmysql
|
||||||
buildorder: 102
|
buildorder: 102
|
||||||
ref: master
|
ref: rawhide
|
||||||
rubygem-pg:
|
rubygem-pg:
|
||||||
# From rubygem-pg.spec Summary
|
# From rubygem-pg.spec Summary
|
||||||
rationale: >-
|
rationale: >-
|
||||||
A Ruby interface to the PostgreSQL RDBMS
|
A Ruby interface to the PostgreSQL RDBMS
|
||||||
buildorder: 102
|
buildorder: 102
|
||||||
ref: master
|
ref: rawhide
|
||||||
rubygem-bson:
|
|
||||||
# From rubygem-bson.spec Summary
|
|
||||||
rationale: >-
|
|
||||||
Ruby Implementation of the BSON specification
|
|
||||||
buildorder: 102
|
|
||||||
ref: master
|
|
||||||
rubygem-mongo:
|
|
||||||
# From rubygem-mongo.spec Summary
|
|
||||||
rationale: >-
|
|
||||||
Ruby driver for MongoDB
|
|
||||||
buildorder: 103
|
|
||||||
ref: master
|
|
||||||
buildopts:
|
buildopts:
|
||||||
rpms:
|
rpms:
|
||||||
macros: |
|
macros: |
|
||||||
|
|
@ -101,10 +89,6 @@ data:
|
||||||
- rubygem-mysql2
|
- rubygem-mysql2
|
||||||
# From rubygem-pg.spec
|
# From rubygem-pg.spec
|
||||||
- rubygem-pg
|
- rubygem-pg
|
||||||
# From rubygem-bson.spec
|
|
||||||
- rubygem-bson
|
|
||||||
# From rubygem-mongo.spec
|
|
||||||
- rubygem-mongo
|
|
||||||
# Add profiles/default as a temporary workflow,
|
# Add profiles/default as a temporary workflow,
|
||||||
# because of a issue for omitted profiles element.
|
# because of a issue for omitted profiles element.
|
||||||
profiles:
|
profiles:
|
||||||
|
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
# Installation
|
|
||||||
# https://meta-test-family.readthedocs.io/en/latest/installation.html#installing-mtf
|
|
||||||
test:
|
|
||||||
mtf-env-set
|
|
||||||
mtf-generator
|
|
||||||
mtf -l *.py
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
||||||
document: modularity-testing
|
|
||||||
version: 1
|
|
||||||
name: ruby
|
|
||||||
modulemd-url: https://src.fedoraproject.org/cgit/modules/ruby.git/plain/ruby.yaml
|
|
||||||
packages:
|
|
||||||
rpms:
|
|
||||||
- ruby
|
|
||||||
module:
|
|
||||||
rpm:
|
|
||||||
url: http://ftp.fi.muni.cz/pub/linux/fedora/linux/releases/26/Everything/x86_64/os/
|
|
||||||
docker:
|
|
||||||
url: docker.io/centos/ruby-23-centos7
|
|
||||||
test:
|
|
||||||
version:
|
|
||||||
- 'ruby -v'
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue