We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c443e2 commit 321df4eCopy full SHA for 321df4e
.github/workflows/sqlite3-ruby.yml
@@ -76,6 +76,21 @@ jobs:
76
- run: bundle exec rake compile -- --enable-system-libraries
77
- run: bundle exec rake test
78
79
+ # reported at https://github.com/sparklemotion/sqlite3-ruby/issues/354
80
+ # TODO remove once https://github.com/flavorjones/mini_portile/issues/118 is fixed
81
+ fedora:
82
+ runs-on: ubuntu-latest
83
+ container:
84
+ image: fedora:35
85
+ steps:
86
+ - run: |
87
+ dnf group install -y "C Development Tools and Libraries"
88
+ dnf install -y ruby ruby-devel
89
+ - uses: actions/checkout@v3
90
+ - run: bundle install
91
+ - run: bundle exec rake compile -- --disable-system-libraries
92
+ - run: bundle exec rake test
93
+
94
sqlcipher:
95
strategy:
96
fail-fast: false
0 commit comments