Skip to content
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

build: support fedora #4371

Merged
merged 33 commits into from
Aug 10, 2023
Merged

build: support fedora #4371

merged 33 commits into from
Aug 10, 2023

Conversation

jiceatscion
Copy link
Contributor

@jiceatscion jiceatscion commented Jul 24, 2023

Changes can be summarized as follows:
1 . Update the scripts in tools/ so the denecessary packages are installed (in the right order).
2 . Bottleneck references the sqlite lib through a single source file so it's easy to use different implementations of that lib.
3 . Replace mattn_sqlite with modenrc_sqlite to remove dependency on a specific version of glibc (which breaks integration tests).

Also did some minor makefile simplifications: no need to "make go-mod-tidy" and "make go_deps.blz" explicitly. It happens as needed upon "make gazelle".


This change is Reviewable

Many packages that are explicitly installed in the debian case were
left implicit in the rhel case (in the assumption that they were
part of the Software Development package group). While at it, separated
the command from the list of packages as is doen for debian.

The pip3 package was used before there is a chance to install it. Since
pip3/deps isn't needed by the rest of the install scripts. Do it last.
. go.mod is a real file, so we do not need a separate phony target name.
. since go.mod is a real file, we can have go-deps.bzl depend on it, no need to make it explicitly.
. make gazelle depend on go_deps.bzl so there's no need to make go_deps.bzl explicitly either,
Added the modernc go sqlite implementation and made it the default. The reason is that the mattn implementation links statically to C code, which creates a dependency on the glibc version of the build host. That version can be incompatible with the one contained in the test containers, causing the integraton tests to fail. There are other ways to fix the problem in general:

* Full cross-build for the specific test distribution.
* Building the test containers to match the build host.
* Both (ie. build and test for different platforms, including the build host's)

Each of those have different merits and require a lot of work. In the meantime removing that dependency puts the issue out of the critical path and lowers complexity.

The mattn sqlite implementation is retained as an option. To make it easy to switch back-and-forth between implementations, all direct references to the sqlite implementation are confined to exactly one go file per implementation: private/storage/db/sqlite_<impl>.go. To switch between them, just edit the srcs attribute in private/storage/db/BUILD.bazel. To make this possible, I had to prevent gazelle from updating that target. If you know of a better way, chime in.
The build option is now compatible with go build.

To build with mattn sqlite, pass the flag "-tag sqlite_mattn". To build with modernc sqlite, pass the flag "-tag sqlite_modernc".

When building via Bazel, that flag is injected via .blazerc with the line:

"common --show_timestamps --define gotags=sqlite_modernc"

Gazelle also needs to be supplied with that tag. For gazelle gotags must be passed as:

"-build_tags tag1,tag2,..."

This is accomplished by adding a pair of config_setting() calls that translate the gotags define into a setting tag and by using a select keyed on that to pass the appropriate flag to Gazelle. Gazelle update-repos does not need to know about the go tag.

On the Makefile side, Gazelle is now called with "-args" to pass those arguments that aare variables in the Makefile, allowing the others to be chosen and appended by Blaze rules.

It was noticed that make licenses implies a full build and therefore should be done last. (At least not before gazelle.)
Copy link
Contributor

@matzf matzf left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewed 40 of 40 files at r1, all commit messages.
Reviewable status: all files reviewed, 7 unresolved discussions (waiting on @jiceatscion)


BUILD.bazel line 22 at r1 (raw file):

# This is simplistic but the complete, by-the-everchanging-bazel-book, solution
# is ludicrously complicated. Go there if and when needed.

Could you describe first in the comment what this tries to achieve and a hint on how to use it?

IIUC, this config_setting matches the gotags defined elsewhere, in the bazelrc or on the command line. Initially I had expected it to define values, like the attribute is called, i.e. to set the gotags. I was very confused for a moment...


Makefile line 1 at r1 (raw file):

.PHONY: all antlr bazel clean docker-images gazelle go.mod licenses mocks protobuf scion-topo test test-integration write_all_source_files

go.mod is not phony :)


Makefile line 63 at r1 (raw file):

gazelle: go_deps.bzl
	@# call gazelle with -args, which appends our arguments to those from the gazelle() rule
	bazel run //:gazelle --verbose_failures --config=quiet -- -args -mode=$(GAZELLE_MODE) $(GAZELLE_DIRS)

Maybe it would be worth getting rid of these args entirely? The GAZELLE_MODE is only used in lint-go-gazelle below. There, it could be replaced by creating a corresponding gazelle_diff rule in the BUILD file (analogous to the gazelle_update_repos rule above). The antlr thing ignores the GAZELLE_MODE, so we can just remove it there.


Makefile line 66 at r1 (raw file):

licenses: bazel
	tools/licenses.sh

Should we also remove the bazel build from the tools/licenses.sh?


nogo.json line 113 at r1 (raw file):

            "/com_github_uber_jaeger_client_go": "",
	    "/org_modernc_sqlite": "",
	    "/org_modernc_mathutil": ""

Nit: inconsistent indent (tab)


private/storage/db/sqlite_modernc.go line 33 at r1 (raw file):

// no database exists a new database is be created. If the schema version of the
// stored database is different from schemaVersion, an error is returned.
func NewSqlite(path string, schema string, schemaVersion int) (*sql.DB, error) {

Instead of replicating this entire file, we could move only the imports for the sqlite implementations into two separate files. So these two new files would be empty, except for the anonymous import and the build tags.

Perhaps we could add the same constant definition to both files to ensure the build fails if the gotags are not set correctly:

const buildtag_guard = "must choose an sqlite implementation to build, by defining exactly one of the gotags 'sqlite_modernc' or 'sqlite_mattn'"

private/storage/db/sqlite_mattn.go line 131 at r1 (raw file):

// that we do not care about. Currently we do not care about ErrConstraint.
// If the error is filtered, we return nil.
func FilterError(err error) error {

FilterError and IsSqliteError is no longer needed after #4372.

Copy link
Contributor Author

@jiceatscion jiceatscion left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewable status: 36 of 40 files reviewed, 5 unresolved discussions (waiting on @matzf)


Makefile line 1 at r1 (raw file):

Previously, matzf (Matthias Frei) wrote…

go.mod is not phony :)

That a make quirck that I had long forgotten. Yes go.mod is phony: it needs to be built regardless of the existence of a file by that name. That is in fact what phony does. Without phony, it doesn't get updated because it has no explicit dependency.


Makefile line 63 at r1 (raw file):

Previously, matzf (Matthias Frei) wrote…

Maybe it would be worth getting rid of these args entirely? The GAZELLE_MODE is only used in lint-go-gazelle below. There, it could be replaced by creating a corresponding gazelle_diff rule in the BUILD file (analogous to the gazelle_update_repos rule above). The antlr thing ignores the GAZELLE_MODE, so we can just remove it there.

done


Makefile line 66 at r1 (raw file):

Previously, matzf (Matthias Frei) wrote…

Should we also remove the bazel build from the tools/licenses.sh?

Yes, done.


nogo.json line 113 at r1 (raw file):

Previously, matzf (Matthias Frei) wrote…

Nit: inconsistent indent (tab)

done


private/storage/db/sqlite_modernc.go line 33 at r1 (raw file):

Previously, matzf (Matthias Frei) wrote…

Instead of replicating this entire file, we could move only the imports for the sqlite implementations into two separate files. So these two new files would be empty, except for the anonymous import and the build tags.

Perhaps we could add the same constant definition to both files to ensure the build fails if the gotags are not set correctly:

const buildtag_guard = "must choose an sqlite implementation to build, by defining exactly one of the gotags 'sqlite_modernc' or 'sqlite_mattn'"

The two aren't really identical, the differences are slight but hard to represent as meaningful abstractions. Still, I'll see what I can do about the duplication without making outright spaghetti. Stay tuned.

Re. the constant. Good idea, the error will be clearer than "oh you have two functions named NewSqlite". So, done


private/storage/db/sqlite_mattn.go line 131 at r1 (raw file):

Previously, matzf (Matthias Frei) wrote…

FilterError and IsSqliteError is no longer needed after #4372.

Done.

Copy link
Contributor Author

@jiceatscion jiceatscion left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewable status: 36 of 40 files reviewed, 4 unresolved discussions (waiting on @matzf)


BUILD.bazel line 22 at r1 (raw file):

Previously, matzf (Matthias Frei) wrote…

Could you describe first in the comment what this tries to achieve and a hint on how to use it?

IIUC, this config_setting matches the gotags defined elsewhere, in the bazelrc or on the command line. Initially I had expected it to define values, like the attribute is called, i.e. to set the gotags. I was very confused for a moment...

Done.

… sqlite implementation drivers.

The drivers are now reduced to two functions; one to set the pragmas in the connection uri and the other to return the implementation's registration name.
Copy link
Contributor Author

@jiceatscion jiceatscion left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewable status: 30 of 41 files reviewed, 4 unresolved discussions (waiting on @matzf)


private/storage/db/sqlite_modernc.go line 33 at r1 (raw file):

Previously, jiceatscion wrote…

The two aren't really identical, the differences are slight but hard to represent as meaningful abstractions. Still, I'll see what I can do about the duplication without making outright spaghetti. Stay tuned.

Re. the constant. Good idea, the error will be clearer than "oh you have two functions named NewSqlite". So, done

done

Copy link
Contributor

@matzf matzf left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewed 3 of 4 files at r2, 7 of 8 files at r3, all commit messages.
Reviewable status: 40 of 41 files reviewed, 3 unresolved discussions (waiting on @jiceatscion)


BUILD.bazel line 22 at r1 (raw file):

Previously, jiceatscion wrote…

Done.

💯 thanks!


Makefile line 1 at r1 (raw file):

Previously, jiceatscion wrote…

That a make quirck that I had long forgotten. Yes go.mod is phony: it needs to be built regardless of the existence of a file by that name. That is in fact what phony does. Without phony, it doesn't get updated because it has no explicit dependency.

Argh, of course, sorry.


private/storage/db/sqlite.go line 22 at r3 (raw file):

	"net/url"

	_ "modernc.org/sqlite"

This is not supposed to be here, or is it?


private/storage/db/sqlite_modernc.go line 33 at r1 (raw file):

Previously, jiceatscion wrote…

done

Ah sorry, I missed the differences. Looks good 👍


private/storage/db/sqlite_mattn.go line 1 at r3 (raw file):

// Copyright 2023 Scion Association

Suggestion:

// Copyright 2023 SCION Association

private/storage/db/sqlite_mattn.go line 31 at r3 (raw file):

// connection path for this sqlite implementation. The modifications turn on 
// foreign keys and WAL journal mode for every SQL query.
func AddPragmas(q url.Values) {

Should very likely not be exported, addPragmas, and driverName.

Passing the build tags to the linter causes a bit of complication.
To make sure that we have the tags specified in only one place and that bazel can be invoked without using Make, Make has to obtain them from bazel.
sqlite.go is now common to all sqlite implementations it hould not import any specific one.
Copy link
Contributor Author

@jiceatscion jiceatscion left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewable status: 35 of 43 files reviewed, 3 unresolved discussions (waiting on @matzf)


private/storage/db/sqlite.go line 22 at r3 (raw file):

Previously, matzf (Matthias Frei) wrote…

This is not supposed to be here, or is it?

Indeed. That was a leftover. Gone.


private/storage/db/sqlite_mattn.go line 1 at r3 (raw file):

// Copyright 2023 Scion Association

Done.


private/storage/db/sqlite_mattn.go line 31 at r3 (raw file):

Previously, matzf (Matthias Frei) wrote…

Should very likely not be exported, addPragmas, and driverName.

Done.

Ooooo Ummmmmm. buildkit adds a build flag that the linter can't process.
Made sure we only add the go build tags to the linter flags.
--noansi has been deprecated 2 years ago and I'm getting warnings.

This could have stayed out of the changes I am currently working on, but since the pull-request is stuck two CLs back, I am hoping that adding one change will un-stick it.
(Sigh...) sometimes there's no option after the gotags, so matching the space that may follow is a bad idea and not needed.
…ead.

That's not ideal since whoever builds the code is free to edit .bazelrc and
chose sqlite_mattn instead (which would cause the license file to re-appear.

However, I have no good idea for a better solution and it can be solved later,
rather than continuing to block this PR.
Yet another invocation of "go" outside the control of bazel.
Copy link
Contributor

@matzf matzf left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewed 3 of 7 files at r4, 2 of 4 files at r5, 1 of 1 files at r6, 4 of 4 files at r9, all commit messages.
Reviewable status: 45 of 46 files reviewed, 1 unresolved discussion (waiting on @jiceatscion)

a discussion (no related file):
The section on building with go build in the documentation should now explain that a tag must be given to select the sqlite implementation, here:

go build -o bin ./<service>/cmd/<service>...


. Use dashes for lists in doc.
. Mention the new required go build tag "sqlite_mattn"/"sqlite_modernc" for
  folks who use go build.
. Unexport the build guard constant and refer to it with an anoymous var.
  The goal here is to make any build tag mistake easier to understand from
  the compiler's error message.
Copy link
Contributor Author

@jiceatscion jiceatscion left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewable status: 42 of 47 files reviewed, 1 unresolved discussion (waiting on @matzf)

a discussion (no related file):

Previously, matzf (Matthias Frei) wrote…

The section on building with go build in the documentation should now explain that a tag must be given to select the sqlite implementation, here:

go build -o bin ./<service>/cmd/<service>...

Done.


Copy link
Contributor

@matzf matzf left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewed 1 of 2 files at r7, 4 of 4 files at r10, all commit messages.
Reviewable status: all files reviewed, 2 unresolved discussions (waiting on @jiceatscion)


doc/dev/setup.rst line 115 at r10 (raw file):

   - `mattn`: A cgo implementation. It is well established but can makes go
     executables dependent on a minimum glibc version.

Also, maybe "but requires CGo <... link to cgo>_ and makes go executables depend ..."

Suggestion:

   - `mattn`: A cgo implementation. It is well established but makes go
     executables dependent on a minimum glibc version.

Copy link
Contributor

@matzf matzf left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewable status: all files reviewed, 2 unresolved discussions (waiting on @jiceatscion)

@oncilla oncilla changed the title build: (Mostly). Support building and testing on Fedora. build: support Fedora Aug 4, 2023
@oncilla oncilla changed the title build: support Fedora build: support fedora Aug 4, 2023
Copy link
Contributor

@oncilla oncilla left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewed 30 of 41 files at r1, 3 of 4 files at r2, 2 of 8 files at r3, 3 of 7 files at r4, 1 of 2 files at r7, 4 of 4 files at r9, 3 of 4 files at r10, 1 of 1 files at r11, all commit messages.
Reviewable status: all files reviewed, 3 unresolved discussions (waiting on @jiceatscion and @matzf)


private/storage/db/sqlite_modernc.go line 26 at r11 (raw file):

)

const buildtag_guard_either_sqlite_mattn_or_sqlite_modernc = "must choose an sqlite " +

ditto


private/storage/db/sqlite_mattn.go line 26 at r11 (raw file):

)

const buildtag_guard_either_sqlite_mattn_or_sqlite_modernc = "must choose an sqlite " +

variable names in go should always be camelCase instead of snake_case.

See https://go.dev/doc/effective_go#mixed-caps

Copy link
Contributor

@oncilla oncilla left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewable status: all files reviewed, 3 unresolved discussions (waiting on @jiceatscion and @matzf)

a discussion (no related file):

Previously, jiceatscion wrote…

Done.

I think having to specify a build flag in all cases is a bit unfortunate.
It also goes against the Go credo that every repository should compile and be able to run go test ./... out of the box.

I would prefer if we agree on a default (modernc or mattn) that is used when no build tag is specified, and enable the other via a build tag instead.


Copy link
Contributor Author

@jiceatscion jiceatscion left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewable status: all files reviewed, 3 unresolved discussions (waiting on @matzf and @oncilla)

a discussion (no related file):

Previously, oncilla (Dominik Roos) wrote…

I think having to specify a build flag in all cases is a bit unfortunate.
It also goes against the Go credo that every repository should compile and be able to run go test ./... out of the box.

I would prefer if we agree on a default (modernc or mattn) that is used when no build tag is specified, and enable the other via a build tag instead.

I don't think go test ./ works out of the box already. There are quite a few preparatory steps required. That said, I am not entirely against having a default choice. (If we want the integration tests to work out of the box for the majority of development environment that would have to be modernc.). However I would find it a bit unfortunate that there be no way to make either choice explicit and to assume there will ever be only two choices.

Because go build constraints are so simplistic I do not know of a way to match the absence of a given category of tags. Should there be more than 2 options for something, we would need to express the default as a negation of every other variants. For example, we would need to put the following in sqlite_modernc.go:

//go:build sqlite_modernc || !(sqlite_mattn || sqlite_x || sqlite_y)

We're really missing a key-value oriented syntax; something like
//go:build sqlite=modernc || sqlite=''

... Unles there's regex matching? Does something like this work?:
//go:build sqlite_modernc || !sqlite_.*

I haven't actually tried.

Opinions?



private/storage/db/sqlite_mattn.go line 26 at r11 (raw file):

Previously, oncilla (Dominik Roos) wrote…

variable names in go should always be camelCase instead of snake_case.

See https://go.dev/doc/effective_go#mixed-caps

This is meant to be easy to read as part of an error message, thereby providing an obvious hint to the user. We'd loose some of that readability by making it CamelCase. I don't see the point of applying the go convention in this case. This variable isn't referenced except by assigning it to "_" to ensure we get an error when it is undefined, so it has no effect on the readability of the rest of the code.

Copy link
Contributor Author

@jiceatscion jiceatscion left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewable status: all files reviewed, 3 unresolved discussions (waiting on @matzf and @oncilla)


private/storage/db/sqlite_modernc.go line 26 at r11 (raw file):

Previously, oncilla (Dominik Roos) wrote…

ditto

ditto

Copy link
Contributor Author

@jiceatscion jiceatscion left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewable status: all files reviewed, 3 unresolved discussions (waiting on @matzf and @oncilla)

a discussion (no related file):

Previously, jiceatscion wrote…

I don't think go test ./ works out of the box already. There are quite a few preparatory steps required. That said, I am not entirely against having a default choice. (If we want the integration tests to work out of the box for the majority of development environment that would have to be modernc.). However I would find it a bit unfortunate that there be no way to make either choice explicit and to assume there will ever be only two choices.

Because go build constraints are so simplistic I do not know of a way to match the absence of a given category of tags. Should there be more than 2 options for something, we would need to express the default as a negation of every other variants. For example, we would need to put the following in sqlite_modernc.go:

//go:build sqlite_modernc || !(sqlite_mattn || sqlite_x || sqlite_y)

We're really missing a key-value oriented syntax; something like
//go:build sqlite=modernc || sqlite=''

... Unles there's regex matching? Does something like this work?:
//go:build sqlite_modernc || !sqlite_.*

I haven't actually tried.

Opinions?

After a quick check of the spec... there's no such thing as wildcard matching in go tags and no practical way of implementing anything approximating key-val mapping. So that leaves us with enumerating all alternatives in the default file :-(


Copy link
Contributor Author

@jiceatscion jiceatscion left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewable status: all files reviewed, 3 unresolved discussions (waiting on @matzf and @oncilla)

a discussion (no related file):

Previously, jiceatscion wrote…

After a quick check of the spec... there's no such thing as wildcard matching in go tags and no practical way of implementing anything approximating key-val mapping. So that leaves us with enumerating all alternatives in the default file :-(

So, within these limitations, here's the change that would give you a default sqlite impl:

diff --git a/private/storage/db/sqlite\_modernc.go b/private/storage/db/sqlite\_modernc.go  
index d0b3d0d8c..a621ed286 100644  
\--- a/private/storage/db/sqlite\_modernc.go  
+++ b/private/storage/db/sqlite\_modernc.go  
@@ -12,8 +12,14 @@  
// See the License for the specific language governing permissions and  
// limitations under the License.  
   
\-//go:build sqlite\_modernc  
\-// +build sqlite\_modernc  
+//go:build sqlite\_modernc || !sqlite\_mattn  
+  
+// Note that above go:build expression makes modernc the default by matching  
+// the absence of sqlite\_mattn. Should there be more alternatives, update  
+// the expression to match their absence too.  
+// Also note that this default is overriden by a build configuration  
+// in .bazelrc, so this is only useful when building with "go build" and  
+// may not match what bazel build does.  
   
package db

Pay attention to the caveats that I had to warn about in the following comments. Choose your poison?


Copy link
Contributor

@oncilla oncilla left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewable status: all files reviewed, 3 unresolved discussions (waiting on @matzf)

a discussion (no related file):

Previously, jiceatscion wrote…

So, within these limitations, here's the change that would give you a default sqlite impl:

diff --git a/private/storage/db/sqlite\_modernc.go b/private/storage/db/sqlite\_modernc.go  
index d0b3d0d8c..a621ed286 100644  
\--- a/private/storage/db/sqlite\_modernc.go  
+++ b/private/storage/db/sqlite\_modernc.go  
@@ -12,8 +12,14 @@  
// See the License for the specific language governing permissions and  
// limitations under the License.  
   
\-//go:build sqlite\_modernc  
\-// +build sqlite\_modernc  
+//go:build sqlite\_modernc || !sqlite\_mattn  
+  
+// Note that above go:build expression makes modernc the default by matching  
+// the absence of sqlite\_mattn. Should there be more alternatives, update  
+// the expression to match their absence too.  
+// Also note that this default is overriden by a build configuration  
+// in .bazelrc, so this is only useful when building with "go build" and  
+// may not match what bazel build does.  
   
package db

Pay attention to the caveats that I had to warn about in the following comments. Choose your poison?

I'm pretty sure we will not add more than these two sqlite implementations.
I would be more than happy to switch to modernc, but maybe let's do that after we have gained some confidence that it works.
Thus, I think the latest suggestion works and is good enough.

As for tests not running with go test ./.... That is an oversight.
I opened #4375 to resolve this. Please let me know if you find any other go unit tests that do not work out of the box.


Copy link
Contributor

@oncilla oncilla left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewable status: all files reviewed, 1 unresolved discussion (waiting on @matzf)


private/storage/db/sqlite_mattn.go line 26 at r11 (raw file):

Previously, jiceatscion wrote…

This is meant to be easy to read as part of an error message, thereby providing an obvious hint to the user. We'd loose some of that readability by making it CamelCase. I don't see the point of applying the go convention in this case. This variable isn't referenced except by assigning it to "_" to ensure we get an error when it is undefined, so it has no effect on the readability of the rest of the code.

Ack. Resolving because I have no strong opinions on this particular case.
Generally, I prefer keeping to the conventions.

To that end:
* Change the go:build directive in sqlite_modernc to match
  the absence of the sqlite_mattn tag.
* Retire the old +build syntax which is outdated and makes logical expressions
  error prone.
* Add a warning about the limitations of the approach.
Copy link
Contributor Author

@jiceatscion jiceatscion left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewable status: 45 of 47 files reviewed, 1 unresolved discussion (waiting on @matzf and @oncilla)

a discussion (no related file):

Previously, oncilla (Dominik Roos) wrote…

I'm pretty sure we will not add more than these two sqlite implementations.
I would be more than happy to switch to modernc, but maybe let's do that after we have gained some confidence that it works.
Thus, I think the latest suggestion works and is good enough.

As for tests not running with go test ./.... That is an oversight.
I opened #4375 to resolve this. Please let me know if you find any other go unit tests that do not work out of the box.

Done.


Copy link
Contributor

@oncilla oncilla left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewed 2 of 2 files at r13, all commit messages.
Reviewable status: all files reviewed, 1 unresolved discussion (waiting on @matzf)

Copy link
Contributor

@oncilla oncilla left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

:lgtm:

Reviewable status: all files reviewed, 1 unresolved discussion (waiting on @matzf)

Copy link
Contributor

@oncilla oncilla left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Dismissed @matzf from a discussion.
Reviewable status: :shipit: complete! all files reviewed, all discussions resolved (waiting on @jiceatscion)

@oncilla oncilla merged commit 4096d87 into scionproto:master Aug 10, 2023
4 checks passed
JordiSubira pushed a commit to JordiSubira/scion that referenced this pull request Oct 4, 2023
1 . Update the scripts in tools/ so the necessary packages are installed (in the right order).
2 . Bottleneck references the sqlite lib through a single source file so it's easy to use different implementations of that lib.
3 . Replace mattn_sqlite with modenrc_sqlite to remove dependency on a specific version of glibc (which breaks integration tests).

Also did some minor makefile simplifications: no need to "make go-mod-tidy" and "make go_deps.blz" explicitly. It happens as needed upon "make gazelle".
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants