forked from fediversity/fediversity
Compare commits
No commits in common. "4df2ba9be7be2dbdb29c6745b2cfb4a3e62efa31" and "c3df3e43b691f1dfc41307e6b2fc4fcbec05af7e" have entirely different histories.
4df2ba9be7
...
c3df3e43b6
10 changed files with 43 additions and 91 deletions
|
|
@ -1,11 +0,0 @@
|
||||||
when:
|
|
||||||
- event: manual
|
|
||||||
- event: pull_request
|
|
||||||
- event: push
|
|
||||||
branch: main
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: check-data-model
|
|
||||||
image: bash
|
|
||||||
commands:
|
|
||||||
- nix-shell --run 'nix-unit ./deployment/data-model-test.nix'
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
||||||
when:
|
|
||||||
- event: manual
|
|
||||||
- event: pull_request
|
|
||||||
- event: push
|
|
||||||
branch: main
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: check-deployment-basic
|
|
||||||
image: bash
|
|
||||||
commands:
|
|
||||||
- nix build .#checks.x86_64-linux.deployment-basic -L
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
||||||
when:
|
|
||||||
- event: manual
|
|
||||||
- event: pull_request
|
|
||||||
- event: push
|
|
||||||
branch: main
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: check-deployment-cli
|
|
||||||
image: bash
|
|
||||||
commands:
|
|
||||||
- nix build .#checks.x86_64-linux.deployment-cli -L
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
||||||
when:
|
|
||||||
- event: manual
|
|
||||||
- event: pull_request
|
|
||||||
- event: push
|
|
||||||
branch: main
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: check-deployment-panel
|
|
||||||
image: bash
|
|
||||||
commands:
|
|
||||||
- nix build .#checks.x86_64-linux.deployment-panel -L
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
||||||
when:
|
|
||||||
- event: manual
|
|
||||||
- event: pull_request
|
|
||||||
- event: push
|
|
||||||
branch: main
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: check-mastodon
|
|
||||||
image: bash
|
|
||||||
commands:
|
|
||||||
- nix build .#checks.x86_64-linux.test-mastodon-service -L
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
||||||
when:
|
|
||||||
- event: manual
|
|
||||||
- event: pull_request
|
|
||||||
- event: push
|
|
||||||
branch: main
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: check-panel
|
|
||||||
image: bash
|
|
||||||
commands:
|
|
||||||
- nix-build -A tests.panel
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
||||||
when:
|
|
||||||
- event: manual
|
|
||||||
- event: pull_request
|
|
||||||
- event: push
|
|
||||||
branch: main
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: check-peertube
|
|
||||||
image: bash
|
|
||||||
commands:
|
|
||||||
- nix build .#checks.x86_64-linux.test-peertube-service -L
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
||||||
when:
|
|
||||||
- event: manual
|
|
||||||
- event: pull_request
|
|
||||||
- event: push
|
|
||||||
branch: main
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: check-pre-commit
|
|
||||||
image: bash
|
|
||||||
commands:
|
|
||||||
- nix-build -A tests
|
|
||||||
43
.woodpecker/ci.yaml
Normal file
43
.woodpecker/ci.yaml
Normal file
|
|
@ -0,0 +1,43 @@
|
||||||
|
when:
|
||||||
|
- event: manual
|
||||||
|
- event: pull_request
|
||||||
|
- event: push
|
||||||
|
branch: main
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: build
|
||||||
|
image: bash
|
||||||
|
commands:
|
||||||
|
- nix-build -A tests
|
||||||
|
- name: check-pre-commit
|
||||||
|
image: bash
|
||||||
|
commands:
|
||||||
|
- nix-build -A tests
|
||||||
|
- name: check-data-model
|
||||||
|
image: bash
|
||||||
|
commands:
|
||||||
|
- nix-shell --run 'nix-unit ./deployment/data-model-test.nix'
|
||||||
|
- name: check-mastodon
|
||||||
|
image: bash
|
||||||
|
commands:
|
||||||
|
- nix build .#checks.x86_64-linux.test-mastodon-service -L
|
||||||
|
- name: check-peertube
|
||||||
|
image: bash
|
||||||
|
commands:
|
||||||
|
- nix build .#checks.x86_64-linux.test-peertube-service -L
|
||||||
|
- name: check-panel
|
||||||
|
image: bash
|
||||||
|
commands:
|
||||||
|
- nix-build -A tests.panel
|
||||||
|
- name: check-deployment-basic
|
||||||
|
image: bash
|
||||||
|
commands:
|
||||||
|
- nix build .#checks.x86_64-linux.deployment-basic -L
|
||||||
|
- name: check-deployment-cli
|
||||||
|
image: bash
|
||||||
|
commands:
|
||||||
|
- nix build .#checks.x86_64-linux.deployment-cli -L
|
||||||
|
- name: check-deployment-panel
|
||||||
|
image: bash
|
||||||
|
commands:
|
||||||
|
- nix build .#checks.x86_64-linux.deployment-panel -L
|
||||||
|
|
@ -17,9 +17,6 @@ in
|
||||||
{
|
{
|
||||||
hostName = config.fediversityVm.name;
|
hostName = config.fediversityVm.name;
|
||||||
domain = config.fediversityVm.domain;
|
domain = config.fediversityVm.domain;
|
||||||
hosts = {
|
|
||||||
"185.206.232.34" = [ "git.fediversity.eu" ];
|
|
||||||
};
|
|
||||||
|
|
||||||
## REVIEW: Do we actually need that, considering that we have static IPs?
|
## REVIEW: Do we actually need that, considering that we have static IPs?
|
||||||
useDHCP = mkDefault true;
|
useDHCP = mkDefault true;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue