-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from tiiuae/feat/dev-env
Create project environment
- Loading branch information
Showing
11 changed files
with
1,134 additions
and
4 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
use flake |
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,36 @@ | ||
<!-- | ||
Copyright 2023 TII (SSRC) and the Ghaf contributors | ||
SPDX-License-Identifier: CC-BY-SA-4.0 | ||
--> | ||
|
||
## Description of changes | ||
|
||
<!-- | ||
Summary of the proposed changes in the PR description in your own words. For dependency updates, please link to the changelog. | ||
--> | ||
|
||
## Checklist for things done | ||
|
||
<!-- Please check, [X], to all that applies. Leave [ ] if an item does not apply but you have considered the check list item. Note that all of these are not hard requirements. They serve information to reviewers. When you fill the checklist, you indicate to reviewers you appreciate their work. --> | ||
|
||
- [ ] Summary of the proposed changes in the PR description | ||
- [ ] More detailed description in the commit message(s) | ||
- [ ] Commits are squashed into relevant entities - avoid a lot of minimal dev time commits in the PR | ||
- [ ] [Contribution guidelines](https://github.com/tiiuae/ghaf/blob/main/CONTRIBUTING.md) followed | ||
- [ ] PR linked to architecture documentation and requirement(s) (ticket id) | ||
- [ ] Test procedure described (or includes tests). Select one or more: | ||
- [ ] Tested on Lenovo X1 `x86_64` | ||
- [ ] Tested on Jetson Orin NX or AGX `aarch64` | ||
- [ ] Tested on Polarfire `riscv64` | ||
- [ ] Author has run `make-checks` and it passes | ||
- [ ] All automatic Github Action checks pass - see [actions](https://github.com/tiiuae/nw-packet-forwader/actions) | ||
- [ ] Author has added reviewers and removed PR draft status | ||
|
||
<!-- Additional description of omitted [ ] items if not obvious. --> | ||
|
||
## Instructions for Testing | ||
|
||
- [ ] List all targets that this applies to: | ||
- [ ] Is this a new feature | ||
- [ ] List the test steps to verify: | ||
- [ ] If it is an improvement how does it impact existing functionality? |
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,25 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out the repository | ||
uses: actions/checkout@v4 | ||
|
||
- uses: cachix/install-nix-action@v24 | ||
with: | ||
nix_path: nixpkgs=channel:nixos-unstable | ||
|
||
- name: Nix flake check | ||
run: | | ||
nix flake check |
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.