File tree Expand file tree Collapse file tree 2 files changed +19
-16
lines changed Expand file tree Collapse file tree 2 files changed +19
-16
lines changed Original file line number Diff line number Diff line change 6
6
- main
7
7
pull_request :
8
8
branches :
9
- - ' * '
9
+ - " * "
10
10
11
11
jobs :
12
12
build :
@@ -15,20 +15,23 @@ jobs:
15
15
if : " !contains(github.event.head_commit.message, '[ci skip]')"
16
16
17
17
steps :
18
+ - name : Check out code
19
+ uses : actions/checkout@v3
20
+ - uses : actions/setup-go@v5
21
+ with :
22
+ go-version-file : " go.mod"
23
+ - name : Switch to Java 17 # Note: 17 is pre-installed on ubuntu-latest
24
+ uses : actions/setup-java@v3
25
+ with :
26
+ distribution : " temurin"
27
+ java-version : " 17"
18
28
19
- - name : Check out code
20
- uses : actions/checkout@v3
21
- - uses : actions/setup-go@v5
22
- with :
23
- go-version-file : ' go.mod'
24
- - name : Switch to Java 17 # Note: 17 is pre-installed on ubuntu-latest
25
- uses : actions/setup-java@v3
26
- with :
27
- distribution : ' temurin'
28
- java-version : ' 17'
29
+ # Clean should essentially be a no-op, but make sure that it works.
30
+ - name : Clean
31
+ run : make clean
29
32
30
- - name : Build APKs
31
- run : make tailscale-debug.apk
33
+ - name : Build APKs
34
+ run : make tailscale-debug.apk
32
35
33
- - name : Run tests
34
- run : make test
36
+ - name : Run tests
37
+ run : make test
Original file line number Diff line number Diff line change @@ -299,7 +299,7 @@ docker-remove-shell-image: ## Removes all docker shell image
299
299
docker rmi --force tailscale-android-shell-amd64
300
300
301
301
.PHONY : clean
302
- clean : clean-tailscale.version # # Remove build artifacts. Does not purge docker build envs. Use dockerRemoveEnv for that.
302
+ clean : # # Remove build artifacts. Does not purge docker build envs. Use dockerRemoveEnv for that.
303
303
@echo " Cleaning up old build artifacts"
304
304
-rm -rf android/build $(DEBUG_APK ) $(RELEASE_AAB ) $(RELEASE_TV_AAB ) $(LIBTAILSCALE ) android/libs * .apk * .aab
305
305
@echo " Cleaning cached toolchain"
You can’t perform that action at this time.
0 commit comments