Skip to content

Remove precompiled binaries #328

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
155 changes: 0 additions & 155 deletions .github/workflows/linux-precompile.yml

This file was deleted.

79 changes: 0 additions & 79 deletions .github/workflows/macos-precompile.yml

This file was deleted.

50 changes: 0 additions & 50 deletions .github/workflows/windows-precompile.yml

This file was deleted.

7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

## Unreleased

- changed: Recently https://musl.cc has blocked all traffic coming from Github
actions, so I can not precompile these binaries automatically anymore. I
empathize with the toolchain maintainer's plight. I can not get these
binaries to be mirrored in Github so that the bandwidth stays in house.
Nor do I want to be building on my home machines manually. Instead, this will
go back to being compiled from source for everyone.

## v0.31.0

- changed: Update sqlite to `3.50.0`.
Expand Down
20 changes: 5 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,20 @@ Package: https://hex.pm/packages/exqlite
* When storing `BLOB` values, you have to use `{:blob, the_binary}`, otherwise
it will be interpreted as a string.

## Requirements

- A working compiler (`gcc` or `clang`)

## Installation

```elixir
defp deps do
[
{:exqlite, "~> 0.27"}
{:exqlite, "~> 0.31"}
]
end
```


## Configuration

### Runtime Configuration
Expand All @@ -51,18 +54,6 @@ config :exqlite, default_chunk_size: 100

* `default_chunk_size` - The chunk size that is used when multi-stepping when
not specifying the chunk size explicitly.

### Compile-time Configuration

In `config/config.exs`,

```elixir
config :exqlite, force_build: false
```

* `force_build` - Set `true` to opt out of using precompiled artefacts.
This option only affects the default configuration. For advanced configuation,
this library will always compile natively.

## Advanced Configuration

Expand All @@ -78,7 +69,6 @@ Or you can pass extra environment variables using the Elixir config:

```elixir
config :exqlite,
force_build: true,
make_env: %{
"EXQLITE_SYSTEM_CFLAGS" => "-DSQLITE_ENABLE_DBSTAT_VTAB=1",
"V" => "1"
Expand Down
Loading