ci tweaks and aab fixes.
	
		
			
	
		
	
	
		
	
		
			All checks were successful
		
		
	
	
		
			
				
	
				Build Tilde Friends / Build-All (push) Successful in 6m24s
				
			
		
		
	
	
				
					
				
			
		
			All checks were successful
		
		
	
	Build Tilde Friends / Build-All (push) Successful in 6m24s
				
			This commit is contained in:
		| @@ -1,21 +1,15 @@ | |||||||
| name: Build Tilde Friends | name: Build Tilde Friends | ||||||
| run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 | run-name: ${{ gitea.actor }} running 🚀 | ||||||
| on: [push] | on: [push] | ||||||
|  |  | ||||||
| jobs: | jobs: | ||||||
|   Build-All: |   Build-All: | ||||||
|     runs-on: ubuntu-latest |     runs-on: ubuntu-latest | ||||||
|     steps: |     steps: | ||||||
|       - run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event." |       - name: check out code | ||||||
|       - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!" |  | ||||||
|       - run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." |  | ||||||
|       - name: Check out repository code |  | ||||||
|         uses: actions/checkout@v4 |         uses: actions/checkout@v4 | ||||||
|         with: |         with: | ||||||
|           submodules: true |           submodules: true | ||||||
|       - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." |  | ||||||
|       - run: echo "🖥️ The workflow is now ready to test your code on the runner." |  | ||||||
|       - run: sudo apt update && sudo apt install -y doxygen mingw-w64 |       - run: sudo apt update && sudo apt install -y doxygen mingw-w64 | ||||||
|       - run: make all -j`nproc` docs |       - run: make all -j`nproc` docs | ||||||
|       - run: docker build . |       - run: docker build . | ||||||
|       - run: echo "🍏 This job's status is ${{ job.status }}." |  | ||||||
|   | |||||||
							
								
								
									
										13
									
								
								GNUmakefile
									
									
									
									
									
								
							
							
						
						
									
										13
									
								
								GNUmakefile
									
									
									
									
									
								
							| @@ -747,7 +747,16 @@ $(BUNDLETOOL): | |||||||
| out/TildeFriends.aab: out/apk/classes.dex $(filter-out %debug%, $(ANDROID_TARGETS)) $(RAW_FILES) out/apk/res.apk src/android/AndroidManifest.xml $(BUNDLETOOL) | out/TildeFriends.aab: out/apk/classes.dex $(filter-out %debug%, $(ANDROID_TARGETS)) $(RAW_FILES) out/apk/res.apk src/android/AndroidManifest.xml $(BUNDLETOOL) | ||||||
| 	@rm -rf out/aab/staging/ | 	@rm -rf out/aab/staging/ | ||||||
| 	@mkdir -p out/aab/staging | 	@mkdir -p out/aab/staging | ||||||
| 	@$(ANDROID_BUILD_TOOLS)/aapt2 link --proto-format -o out/aab/temporary.apk -I $(ANDROID_PLATFORM)/android.jar --manifest src/android/AndroidManifest.xml -R out/res/layout_activity_main.xml.flat -R out/res/drawable_icon.xml.flat --auto-add-overlay | 	@$(ANDROID_BUILD_TOOLS)/aapt2 link --proto-format -o out/aab/temporary.apk \ | ||||||
|  | 		-I $(ANDROID_PLATFORM)/android.jar \ | ||||||
|  | 		--version-code $(VERSION_CODE) \ | ||||||
|  | 		--version-name $(VERSION_NUMBER) \ | ||||||
|  | 		--min-sdk-version $(ANDROID_MIN_SDK_VERSION) \ | ||||||
|  | 		--target-sdk-version $(ANDROID_TARGET_SDK_VERSION) \ | ||||||
|  | 		--manifest src/android/AndroidManifest.xml \ | ||||||
|  | 		-R out/res/layout_activity_main.xml.flat \ | ||||||
|  | 		-R out/res/drawable_icon.xml.flat \ | ||||||
|  | 		--auto-add-overlay | ||||||
| 	@unzip out/aab/temporary.apk -d out/aab/staging/ | 	@unzip out/aab/temporary.apk -d out/aab/staging/ | ||||||
| 	@mkdir -p out/aab/staging/root/deps | 	@mkdir -p out/aab/staging/root/deps | ||||||
| 	@mkdir -p out/aab/staging/classes | 	@mkdir -p out/aab/staging/classes | ||||||
| @@ -939,7 +948,7 @@ clean: | |||||||
| 	rm -rf $(BUILD_DIR) | 	rm -rf $(BUILD_DIR) | ||||||
| .PHONY: clean | .PHONY: clean | ||||||
|  |  | ||||||
| dist: release-apk iosrelease-ipa $(if $(HAVE_WIN), out/winrelease/tildefriends.standalone.exe) | dist: release-apk iosrelease-ipa aab $(if $(HAVE_WIN), out/winrelease/tildefriends.standalone.exe) | ||||||
| 	@echo [archive] dist/tildefriends-$(VERSION_NUMBER).tar.xz | 	@echo [archive] dist/tildefriends-$(VERSION_NUMBER).tar.xz | ||||||
| 	@rm -rf out/tildefriends-$(VERSION_NUMBER) | 	@rm -rf out/tildefriends-$(VERSION_NUMBER) | ||||||
| 	@mkdir -p dist/ out/tildefriends-$(VERSION_NUMBER) | 	@mkdir -p dist/ out/tildefriends-$(VERSION_NUMBER) | ||||||
|   | |||||||
| @@ -1,7 +1,6 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> | <?xml version="1.0" encoding="utf-8"?> | ||||||
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" | <manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||||||
| 	package="com.unprompted.tildefriends" | 	package="com.unprompted.tildefriends"> | ||||||
| 	android:versionName="0.0.21-wip"> |  | ||||||
| 	<uses-permission android:name="android.permission.INTERNET"/> | 	<uses-permission android:name="android.permission.INTERNET"/> | ||||||
| 	<application | 	<application | ||||||
| 		android:label="Tilde Friends" | 		android:label="Tilde Friends" | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user