refresh
	
		
			
	
		
	
	
		
	
		
			Some checks are pending
		
		
	
	
		
			
				
	
				Release Alpine apk for ARM64v8 / compilation-arm64v8 (push) Waiting to run
				
			
		
		
	
	
				
					
				
			
		
			Some checks are pending
		
		
	
	Release Alpine apk for ARM64v8 / compilation-arm64v8 (push) Waiting to run
				
			This commit is contained in:
		
							parent
							
								
									27b1358918
								
							
						
					
					
						commit
						4355d79c91
					
				
					 6 changed files with 34 additions and 35 deletions
				
			
		|  | @ -1,4 +1,4 @@ | ||||||
| name: 'Release Alpine apk for ARM64v8' | name: "Release Alpine apk for ARM64v8" | ||||||
| 
 | 
 | ||||||
| on: | on: | ||||||
|   push: |   push: | ||||||
|  | @ -7,50 +7,49 @@ on: | ||||||
| 
 | 
 | ||||||
| jobs: | jobs: | ||||||
|   compilation-arm64v8: |   compilation-arm64v8: | ||||||
|     runs-on: arm64v8-alpine-latest-pv |     runs-on: alpine:latest | ||||||
|     steps: |     steps: | ||||||
|       - name: Select faster mirror and add tools |       - name: Select faster mirror and add tools | ||||||
|         shell: sh |         shell: sh | ||||||
|         run: | |         run: | | ||||||
|             echo "https://alpine.sakamoto.pl/alpine/$(cat /etc/os-release | grep PRETT | cut -d ' ' -f 3 | cut -d '"' -f 1)/main" > /etc/apk/repositories   |           echo "https://alpine.sakamoto.pl/alpine/$(cat /etc/os-release | grep PRETT | cut -d ' ' -f 3 | cut -d '"' -f 1)/main" > /etc/apk/repositories | ||||||
|             echo "https://alpine.sakamoto.pl/alpine/$(cat /etc/os-release | grep PRETT | cut -d ' ' -f 3 | cut -d '"' -f 1)/community" >> /etc/apk/repositories |           echo "https://alpine.sakamoto.pl/alpine/$(cat /etc/os-release | grep PRETT | cut -d ' ' -f 3 | cut -d '"' -f 1)/community" >> /etc/apk/repositories | ||||||
|             apk -U upgrade |           apk -U upgrade | ||||||
|             apk add bash git wget curl nodejs sshfs alpine-sdk abuild sudo shadow |           apk add bash git wget curl nodejs sshfs alpine-sdk abuild sudo shadow | ||||||
|       - name: Checkout |       - name: Checkout | ||||||
|         uses: actions/checkout@v3 |         uses: actions/checkout@v3 | ||||||
|       - name: Set up environment and users |       - name: Set up environment and users | ||||||
|         run: | |         run: | | ||||||
|             echo "user_allow_other" >> /etc/fuse.conf |           echo "user_allow_other" >> /etc/fuse.conf | ||||||
|             adduser runner -u 1001 -D -s /bin/bash -G wheel |           adduser runner -u 1001 -D -s /bin/bash -G wheel | ||||||
|             addgroup -g 1001 runner |           addgroup -g 1001 runner | ||||||
|             addgroup runner abuild |           addgroup runner abuild | ||||||
|             addgroup runner runner |           addgroup runner runner | ||||||
|             chmod 660 /etc/sudoers |           chmod 660 /etc/sudoers | ||||||
|             echo "%wheel ALL=(ALL:ALL) NOPASSWD: ALL" >> /etc/sudoers |           echo "%wheel ALL=(ALL:ALL) NOPASSWD: ALL" >> /etc/sudoers | ||||||
|             chmod 440 /etc/sudoers |           chmod 440 /etc/sudoers | ||||||
|             mkdir -p /var/cache/distfiles |           mkdir -p /var/cache/distfiles | ||||||
|             chmod a+w /var/cache/distfiles |           chmod a+w /var/cache/distfiles | ||||||
|             chsh -s /bin/bash             |           chsh -s /bin/bash | ||||||
|             su - runner -c 'mkdir ~/.abuild' |           su - runner -c 'mkdir ~/.abuild' | ||||||
|             echo "setup done"             |           echo "setup done" | ||||||
|       - name: Set up keys |       - name: Set up keys | ||||||
|         run: | |         run: | | ||||||
|             wget -q https://static.itmodulo.eu/dl/repo/public_keys/alpine/itmodulo%40disroot.org-65b4f779.rsa.pub -P /etc/apk/keys |           wget -q https://static.itmodulo.eu/dl/repo/public_keys/alpine/itmodulo%40disroot.org-65b4f779.rsa.pub -P /etc/apk/keys | ||||||
|             su - runner -c 'wget -q https://static.itmodulo.eu/dl/repo/public_keys/alpine/itmodulo%40disroot.org-65b4f779.rsa.pub -P ~/.abuild/' |           su - runner -c 'wget -q https://static.itmodulo.eu/dl/repo/public_keys/alpine/itmodulo%40disroot.org-65b4f779.rsa.pub -P ~/.abuild/' | ||||||
|             echo "${{ secrets.REPO_PRIVKEY }}" > /home/runner/.abuild/${{ secrets.REPO_PRIVKEY_FILENAME }} && chown runner:runner /home/runner/.abuild/${{ secrets.REPO_PRIVKEY_FILENAME }} |           echo "${{ secrets.REPO_PRIVKEY }}" > /home/runner/.abuild/${{ secrets.REPO_PRIVKEY_FILENAME }} && chown runner:runner /home/runner/.abuild/${{ secrets.REPO_PRIVKEY_FILENAME }} | ||||||
|             su - runner -c "echo 'PACKAGER_PRIVKEY="/home/runner/.abuild/${{ secrets.REPO_PRIVKEY_FILENAME }}"' >> ~/.abuild/abuild.conf"             |           su - runner -c "echo 'PACKAGER_PRIVKEY="/home/runner/.abuild/${{ secrets.REPO_PRIVKEY_FILENAME }}"' >> ~/.abuild/abuild.conf" | ||||||
|       - name: Compile in sequence |       - name: Compile in sequence | ||||||
|         run: | |         run: | | ||||||
|             mv srcpkgs /home/runner && chown -R runner:runner /home/runner/srcpkgs |           mv srcpkgs /home/runner && chown -R runner:runner /home/runner/srcpkgs | ||||||
|             su - runner -c 'export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"; cd srcpkgs/hunspell-pl; abuild -r'             |           echo "/home/runner/packages/srcpkgs" >> /etc/apk/repositories | ||||||
|             echo "/home/runner/packages/srcpkgs" >> /etc/apk/repositories |           su - runner -c 'export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"; cd srcpkgs; for i in $(ls ./ | grep -v hunspell-pl); do cd $i && abuild -r; cd .. ; done' | ||||||
|             su - runner -c 'export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"; cd srcpkgs; for i in $(ls ./ | grep -v hunspell-pl); do cd $i && abuild -r; cd .. ; done'             |  | ||||||
|       - name: Mount and upload |       - name: Mount and upload | ||||||
|         run: | |         run: | | ||||||
|             su - runner -c 'mkdir hole' |           su - runner -c 'mkdir hole' | ||||||
|             echo "${{ secrets.REPO_LOGIN }}" > /home/runner/id_ecdsa && chown runner:runner /home/runner/id_ecdsa && chmod 600 /home/runner/id_ecdsa |           echo "${{ secrets.REPO_LOGIN }}" > /home/runner/id_ecdsa && chown runner:runner /home/runner/id_ecdsa && chmod 600 /home/runner/id_ecdsa | ||||||
|             su - runner -c 'sshfs -p "${{ secrets.LOGIN_PORT }}" -o StrictHostKeyChecking=accept-new -o default_permissions,allow_other -o IdentityFile=/home/runner/id_ecdsa "${{ secrets.SERVER_LOGIN_AND_ADDRESS }}":"${{ secrets.SERVER_REPO_PATH }}" /home/runner/hole' |           su - runner -c 'sshfs -p "${{ secrets.LOGIN_PORT }}" -o StrictHostKeyChecking=accept-new -o default_permissions,allow_other -o IdentityFile=/home/runner/id_ecdsa "${{ secrets.SERVER_LOGIN_AND_ADDRESS }}":"${{ secrets.SERVER_REPO_PATH }}" /home/runner/hole' | ||||||
|             su - runner -c 'ls -lah /home/runner/hole/latest-stable/main/aarch64/' |           su - runner -c 'ls -lah /home/runner/hole/latest-stable/main/aarch64/' | ||||||
|             su - runner -c 'rm -rf hole/latest-stable/main/aarch64/*' |           su - runner -c 'rm -rf hole/latest-stable/main/aarch64/*' | ||||||
|             su - runner -c 'cp packages/srcpkgs/aarch64/* hole/latest-stable/main/aarch64/' |           su - runner -c 'cp packages/srcpkgs/aarch64/* hole/latest-stable/main/aarch64/' | ||||||
|             su - runner -c 'ls -lah /home/runner/hole/latest-stable/main/aarch64/'          |           su - runner -c 'ls -lah /home/runner/hole/latest-stable/main/aarch64/' | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		
		Reference in a new issue