forked from juanfont/headscale
-
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.
Remove old v2 runner in favour of self-hosted Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
- Loading branch information
Showing
2 changed files
with
27 additions
and
35 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,27 @@ | ||
name: Integration Test v2 - kradalby | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
integration-test-v2-kradalby: | ||
runs-on: [self-hosted, linux, x64, nixos, docker] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 2 | ||
|
||
# - name: Get changed files | ||
# id: changed-files | ||
# uses: tj-actions/changed-files@v14.1 | ||
# with: | ||
# files: | | ||
# *.nix | ||
# go.* | ||
# **/*.go | ||
# integration_test/ | ||
# config-example.yaml | ||
|
||
- name: Run general integration tests | ||
# if: steps.changed-files.outputs.any_changed == 'true' | ||
run: nix develop --command -- make test_integration_v2_general |