-
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.
Fix fu-a and stap-a packetization (#48)
* fix fu-a ending * fix stap-a nri * properly set f bit in stap-a * bump version * update circle config * fix CI
- Loading branch information
Showing
8 changed files
with
37 additions
and
50 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 |
---|---|---|
@@ -1,39 +1,30 @@ | ||
|
||
version: 2.0 | ||
jobs: | ||
test: | ||
docker: | ||
- image: membraneframeworklabs/docker_membrane:latest | ||
environment: | ||
MIX_ENV: test | ||
|
||
working_directory: ~/app | ||
|
||
steps: | ||
- checkout | ||
- run: mix deps.get | ||
- run: mix compile --force --warnings-as-errors | ||
- run: mix test | ||
|
||
lint: | ||
docker: | ||
- image: membraneframeworklabs/docker_membrane:latest | ||
environment: | ||
MIX_ENV: dev | ||
|
||
working_directory: ~/app | ||
|
||
steps: | ||
- checkout | ||
- run: mix deps.get | ||
- run: mix format --check-formatted | ||
- run: mix compile | ||
- run: mix credo | ||
- run: mix docs && mix docs 2>&1 | (! grep -q "warning:") | ||
version: 2.1 | ||
orbs: | ||
elixir: membraneframework/elixir@1 | ||
|
||
workflows: | ||
version: 2 | ||
build: | ||
jobs: | ||
- test | ||
- lint | ||
- elixir/build_test: | ||
filters: &filters | ||
tags: | ||
only: /v.*/ | ||
- elixir/test: | ||
filters: | ||
<<: *filters | ||
- elixir/lint: | ||
filters: | ||
<<: *filters | ||
- elixir/hex_publish: | ||
requires: | ||
- elixir/build_test | ||
- elixir/test | ||
- elixir/lint | ||
context: | ||
- Deployment | ||
filters: | ||
branches: | ||
ignore: /.*/ | ||
tags: | ||
only: /v.*/ |
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
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