2022-11-03 04:30:36 -06:00
|
|
|
name: Integration Test DERP
|
2021-08-13 09:12:01 -06:00
|
|
|
|
|
|
|
on: [pull_request]
|
|
|
|
|
|
|
|
jobs:
|
2022-10-18 04:05:17 -06:00
|
|
|
integration-test-derp:
|
2021-08-13 09:12:01 -06:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2022-11-04 03:40:39 -06:00
|
|
|
- uses: actions/checkout@v3
|
2022-01-30 02:54:26 -07:00
|
|
|
with:
|
|
|
|
fetch-depth: 2
|
2021-08-13 09:12:01 -06:00
|
|
|
|
2022-08-08 15:20:29 -06:00
|
|
|
- name: Set Swap Space
|
|
|
|
uses: pierotofy/set-swap-space@master
|
|
|
|
with:
|
|
|
|
swap-size-gb: 10
|
|
|
|
|
2022-01-30 02:43:48 -07:00
|
|
|
- name: Get changed files
|
|
|
|
id: changed-files
|
2022-11-04 03:40:39 -06:00
|
|
|
uses: tj-actions/changed-files@v34
|
2022-01-30 02:43:48 -07:00
|
|
|
with:
|
|
|
|
files: |
|
2022-03-17 12:08:49 -06:00
|
|
|
*.nix
|
2022-01-30 02:43:48 -07:00
|
|
|
go.*
|
|
|
|
**/*.go
|
|
|
|
integration_test/
|
|
|
|
config-example.yaml
|
|
|
|
|
2022-03-17 12:20:01 -06:00
|
|
|
- uses: cachix/install-nix-action@v16
|
2022-01-30 02:43:48 -07:00
|
|
|
if: steps.changed-files.outputs.any_changed == 'true'
|
2021-08-13 09:12:01 -06:00
|
|
|
|
2022-08-09 04:26:58 -06:00
|
|
|
- name: Run Embedded DERP server integration tests
|
|
|
|
if: steps.changed-files.outputs.any_changed == 'true'
|
2022-10-24 08:46:21 -06:00
|
|
|
run: nix develop --command -- make test_integration_derp
|