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

add exec/target constraints parameters to python toolchain macro #169

Merged
merged 1 commit into from
Nov 24, 2021
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu, macos]
runs-on: ${{ matrix.os }}-latest
os: [ubuntu-latest, macos-10.15]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: cachix/install-nix-action@v12
- uses: cachix/install-nix-action@v14.1
with:
nix_path: nixpkgs=./nixpkgs.nix
- name: Configure
Expand Down
4 changes: 2 additions & 2 deletions .mergify.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
pull_request_rules:
- name: automatic merge
conditions:
- 'status-success~=Build & Test - Nixpkgs \(ubuntu\).*'
- 'status-success~=Build & Test - Nixpkgs \(macos\).*'
- 'status-success~=Build & Test - Nixpkgs \(ubuntu-.*\)'
- 'status-success~=Build & Test - Nixpkgs \(macos-.*\)'
- "#approved-reviews-by>=1"
- "label=merge-queue"
- "base=master"
Expand Down
30 changes: 29 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -806,7 +806,7 @@ optional.
<pre>
nixpkgs_python_configure(<a href="#nixpkgs_python_configure-name">name</a>, <a href="#nixpkgs_python_configure-python2_attribute_path">python2_attribute_path</a>, <a href="#nixpkgs_python_configure-python2_bin_path">python2_bin_path</a>, <a href="#nixpkgs_python_configure-python3_attribute_path">python3_attribute_path</a>,
<a href="#nixpkgs_python_configure-python3_bin_path">python3_bin_path</a>, <a href="#nixpkgs_python_configure-repository">repository</a>, <a href="#nixpkgs_python_configure-repositories">repositories</a>, <a href="#nixpkgs_python_configure-nix_file_deps">nix_file_deps</a>, <a href="#nixpkgs_python_configure-nixopts">nixopts</a>,
<a href="#nixpkgs_python_configure-fail_not_supported">fail_not_supported</a>, <a href="#nixpkgs_python_configure-quiet">quiet</a>)
<a href="#nixpkgs_python_configure-fail_not_supported">fail_not_supported</a>, <a href="#nixpkgs_python_configure-quiet">quiet</a>, <a href="#nixpkgs_python_configure-exec_constraints">exec_constraints</a>, <a href="#nixpkgs_python_configure-target_constraints">target_constraints</a>)
</pre>

Define and register a Python toolchain provided by nixpkgs.
Expand Down Expand Up @@ -979,6 +979,34 @@ default is <code>False</code>

See [`nixpkgs_package`](#nixpkgs_package-quiet).

</p>
</td>
</tr>
<tr id="nixpkgs_python_configure-exec_constraints">
<td><code>exec_constraints</code></td>
<td>

optional.
default is <code>None</code>

<p>

Constraints for the execution platform.

</p>
</td>
</tr>
<tr id="nixpkgs_python_configure-target_constraints">
<td><code>target_constraints</code></td>
<td>

optional.
default is <code>None</code>

<p>

Constraints for the target platform.

</p>
</td>
</tr>
Expand Down
39 changes: 22 additions & 17 deletions nixpkgs/nixpkgs.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -564,19 +564,22 @@ _nixpkgs_cc_toolchain_config = repository_rule(
},
)

def _nixpkgs_cc_toolchain_impl(repository_ctx):
def _ensure_constraints(repository_ctx):
cpu = get_cpu_value(repository_ctx)
os = {"darwin": "osx"}.get(cpu, "linux")

if repository_ctx.attr.target_constraints == None and repository_ctx.attr.exec_constraints == None:
if not repository_ctx.attr.target_constraints and not repository_ctx.attr.exec_constraints:
target_constraints = ["@platforms//cpu:x86_64"]
target_constraints.append("@platforms//os:{}".format(os))
exec_constraints = target_constraints
else:
target_constraints = list(repository_ctx.attr.target_constraints)
exec_constraints = list(repository_ctx.attr.exec_constraints)

exec_constraints.append("@io_tweag_rules_nixpkgs//nixpkgs/constraints:support_nix")
return exec_constraints, target_constraints

def _nixpkgs_cc_toolchain_impl(repository_ctx):
cpu = get_cpu_value(repository_ctx)
exec_constraints, target_constraints = _ensure_constraints(repository_ctx)

repository_ctx.file(
"BUILD.bazel",
Expand Down Expand Up @@ -605,7 +608,6 @@ toolchain(
""".format(
cc_toolchain_config = repository_ctx.attr.cc_toolchain_config,
cpu = cpu,
os = os,
exec_constraints = exec_constraints,
target_constraints = target_constraints,
),
Expand Down Expand Up @@ -889,7 +891,8 @@ def nixpkgs_cc_configure_deprecated(
native.register_toolchains("@local_config_cc//:all")

def _nixpkgs_python_toolchain_impl(repository_ctx):
cpu = get_cpu_value(repository_ctx)
exec_constraints, target_constraints = _ensure_constraints(repository_ctx)

repository_ctx.file("BUILD.bazel", executable = False, content = """
load("@bazel_tools//tools/python:toolchain.bzl", "py_runtime_pair")
py_runtime_pair(
Expand All @@ -901,20 +904,14 @@ toolchain(
name = "toolchain",
toolchain = ":py_runtime_pair",
toolchain_type = "@bazel_tools//tools/python:toolchain_type",
exec_compatible_with = [
"@platforms//cpu:x86_64",
"@platforms//os:{os}",
"@io_tweag_rules_nixpkgs//nixpkgs/constraints:support_nix",
],
target_compatible_with = [
"@platforms//cpu:x86_64",
"@platforms//os:{os}",
],
exec_compatible_with = {exec_constraints},
target_compatible_with = {target_constraints},
)
""".format(
python2_runtime = _label_string(repository_ctx.attr.python2_runtime),
python3_runtime = _label_string(repository_ctx.attr.python3_runtime),
os = {"darwin": "osx"}.get(cpu, "linux"),
exec_constraints = exec_constraints,
target_constraints = target_constraints,
))

_nixpkgs_python_toolchain = repository_rule(
Expand All @@ -925,6 +922,8 @@ _nixpkgs_python_toolchain = repository_rule(
# necessary, so that builds don't fail on platforms without nixpkgs.
"python2_runtime": attr.string(),
"python3_runtime": attr.string(),
"exec_constraints": attr.string_list(),
"target_constraints": attr.string_list(),
},
)

Expand Down Expand Up @@ -962,7 +961,9 @@ def nixpkgs_python_configure(
nix_file_deps = None,
nixopts = [],
fail_not_supported = True,
quiet = False):
quiet = False,
exec_constraints = None,
target_constraints = None):
"""Define and register a Python toolchain provided by nixpkgs.

Creates `nixpkgs_package`s for Python 2 or 3 `py_runtime` instances and a
Expand All @@ -985,6 +986,8 @@ def nixpkgs_python_configure(
nixopts: See [`nixpkgs_package`](#nixpkgs_package-nixopts).
fail_not_supported: See [`nixpkgs_package`](#nixpkgs_package-fail_not_supported).
quiet: See [`nixpkgs_package`](#nixpkgs_package-quiet).
exec_constraints: Constraints for the execution platform.
target_constraints: Constraints for the target platform.
"""
python2_specified = python2_attribute_path and python2_bin_path
python3_specified = python3_attribute_path and python3_bin_path
Expand Down Expand Up @@ -1026,6 +1029,8 @@ def nixpkgs_python_configure(
name = name,
python2_runtime = python2_runtime,
python3_runtime = python3_runtime,
exec_constraints = exec_constraints,
target_constraints = target_constraints,
)
native.register_toolchains("@%s//:toolchain" % name)

Expand Down