diff --git a/.bazelrc b/.bazelrc index 074460bb6..3dadd0b1b 100644 --- a/.bazelrc +++ b/.bazelrc @@ -1,2 +1,6 @@ import %workspace%/.bazelrc.common import %workspace%/.bazelrc.bzlmod + +# User Configuration +# ------------------ +try-import %workspace%/.bazelrc.local diff --git a/.bazelrc.bzlmod b/.bazelrc.bzlmod index 6d0a195c0..28651a7d9 100644 --- a/.bazelrc.bzlmod +++ b/.bazelrc.bzlmod @@ -2,4 +2,5 @@ common --noenable_bzlmod common:bzlmod --enable_bzlmod -common:bzlmod --registry=file:%workspace%/registry --registry=https://bcr.bazel.build +# Note, have to use /// to make Bazel not crash on Windows +common --registry=file:///%workspace%/registry --registry=https://bcr.bazel.build diff --git a/.bazelrc.common b/.bazelrc.common index 43d678c99..5127fd6b1 100644 --- a/.bazelrc.common +++ b/.bazelrc.common @@ -136,7 +136,3 @@ build:windows-bindist --proto_compiler @rules_haskell//tests:protoc.cmd # This flag will become the default in bazel 7 # https://github.com/bazelbuild/bazel/issues/17032 build --incompatible_disable_starlark_host_transitions - -# User Configuration -# ------------------ -try-import %workspace%/.bazelrc.local diff --git a/.github/workflows/workflow.yaml b/.github/workflows/workflow.yaml index d9d9691e0..44d53c8f2 100644 --- a/.github/workflows/workflow.yaml +++ b/.github/workflows/workflow.yaml @@ -20,13 +20,17 @@ jobs: matrix: os: [ubuntu-latest, macos-11] module: [rules_haskell, rules_haskell_nix, rules_haskell_tests] - bzlmod: [bzlmod, workspace] + bzlmod: [true, false] ghc: - 9.2.5 - 9.4.5 exclude: - module: rules_haskell_nix - bzlmod: workspace + bzlmod: false + # TODO: in a MODULE.bazel file we declare version specific dependencies, would need to use stack snapshot json + # and stack config per GHC version + - ghc: 9.4.5 + bzlmod: true runs-on: ${{ matrix.os }} steps: - if: ${{ matrix.os == 'ubuntu-latest' }} @@ -62,16 +66,11 @@ jobs: else cache_setting="--remote_header=x-buildbuddy-api-key=$BUILDBUDDY_API_KEY" fi - if [ ${{ matrix.bzlmod }} == bzlmod ]; then - bzlmod_setting='common --config bzlmod' - else - bzlmod_setting='' - fi cat >.bazelrc.local <~/.netrc <