Skip to content

Commit

Permalink
Add depth and avoidance for build
Browse files Browse the repository at this point in the history
  • Loading branch information
kradalby committed Jan 30, 2022
1 parent 1815040 commit 991175f
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,36 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v14.1
with:
fetch-depth: 2
files: |
go.*
**/*.go
integration_test/
config-example.yaml
- name: Setup Go
if: steps.changed-files.outputs.any_changed == 'true'
uses: actions/setup-go@v2
with:
go-version: "1.17"

- name: Install dependencies
if: steps.changed-files.outputs.any_changed == 'true'
run: |
go version
sudo apt update
sudo apt install -y make
- name: Run build
if: steps.changed-files.outputs.any_changed == 'true'
run: make build

- uses: actions/upload-artifact@v2
if: steps.changed-files.outputs.any_changed == 'true'
with:
name: headscale-linux
path: headscale
3 changes: 3 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
id: changed-files
uses: tj-actions/changed-files@v14.1
with:
fetch-depth: 2
files: |
go.*
**/*.go
Expand Down Expand Up @@ -40,6 +41,7 @@ jobs:
id: changed-files
uses: tj-actions/changed-files@v14.1
with:
fetch-depth: 2
files: |
**/*.md
**/*.yml
Expand All @@ -52,6 +54,7 @@ jobs:
**/*.html
- name: Prettify code
if: steps.changed-files.outputs.any_changed == 'true'
uses: creyD/prettier_action@v4.0
with:
prettier_options: >-
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
id: changed-files
uses: tj-actions/changed-files@v14.1
with:
fetch-depth: 2
files: |
go.*
**/*.go
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
id: changed-files
uses: tj-actions/changed-files@v14.1
with:
fetch-depth: 2
files: |
go.*
**/*.go
Expand Down

0 comments on commit 991175f

Please sign in to comment.