-
-
Notifications
You must be signed in to change notification settings - Fork 14.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into init-adjustor
- Loading branch information
Showing
24,924 changed files
with
891,614 additions
and
621,718 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
--- | ||
name: Tracking issue | ||
about: Provide an overview on a multi-step effort | ||
title: 'Tracking issue: ISSUENAME' | ||
labels: '5.scope: tracking' | ||
assignees: '' | ||
|
||
--- | ||
|
||
### Tracking description | ||
|
||
<!-- | ||
Provide a brief summary of the project or multi-step effort. Explain why it is | ||
necessary and what the goals are. | ||
You may include way to reproduce the problem, screenshots or any information | ||
that you find relevant. | ||
--> | ||
|
||
#### Reference Issue(s)/PR(s) | ||
|
||
- ... | ||
|
||
### Follow-up issues/notes | ||
|
||
<!-- | ||
List any follow-up issues that need to be addressed after the main tasks are | ||
completed, or any notes related to the project. | ||
--> | ||
|
||
#### Additional context | ||
Add any other context about the problem here. | ||
|
||
--- | ||
|
||
Add a :+1: [reaction] to [issues you find important]. | ||
|
||
[reaction]: https://github.blog/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/ | ||
[issues you find important]: https://github.com/NixOS/nixpkgs/issues?q=is%3Aissue+is%3Aopen+sort%3Areactions-%2B1-desc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: "Building Nixpkgs lib-tests" | ||
|
||
permissions: | ||
contents: read | ||
|
||
on: | ||
pull_request_target: | ||
paths: | ||
- 'lib/**' | ||
jobs: | ||
get-merge-commit: | ||
uses: ./.github/workflows/get-merge-commit.yml | ||
|
||
nixpkgs-lib-tests: | ||
name: nixpkgs-lib-tests | ||
runs-on: ubuntu-latest | ||
needs: get-merge-commit | ||
if: needs.get-merge-commit.outputs.mergedSha | ||
steps: | ||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | ||
with: | ||
# pull_request_target checks out the base branch by default | ||
ref: ${{ needs.get-merge-commit.outputs.mergedSha }} | ||
- uses: cachix/install-nix-action@08dcb3a5e62fa31e2da3d490afc4176ef55ecd72 # v30 | ||
with: | ||
# explicitly enable sandbox | ||
extra_nix_config: sandbox = true | ||
- name: Building Nixpkgs lib-tests | ||
run: | | ||
nix-build --arg pkgs "(import ./ci/. {}).pkgs" ./lib/tests/release.nix |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.