Skip to content

Commit

Permalink
ci: skip sqlite example on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
flavorjones committed Apr 17, 2021
1 parent 440616e commit 9f2478e
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions examples/Rakefile
Expand Up @@ -17,10 +17,13 @@ recipes.push libiconv


# sqlite3
sqlite3 = MiniPortile.new "sqlite3", "3.35.4"
sqlite3.files << "https://www.sqlite.org/2021/sqlite-autoconf-3350400.tar.gz"
unless windows?
# i can't get this version to build on Github Actions windows-latest / windows-2019
sqlite3 = MiniPortile.new "sqlite3", "3.35.4"
sqlite3.files << "https://www.sqlite.org/2021/sqlite-autoconf-3350400.tar.gz"

recipes.push sqlite3
recipes.push sqlite3
end


# c-ares
Expand Down

0 comments on commit 9f2478e

Please sign in to comment.