|  | @@ -1,4 +1,4 @@
 | 
	
		
			
				|  |  | -name: Reusable workflow example
 | 
	
		
			
				|  |  | +name: Cache toolchain
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  on: workflow_call
 | 
	
		
			
				|  |  |  
 | 
	
	
		
			
				|  | @@ -18,19 +18,23 @@ jobs:
 | 
	
		
			
				|  |  |            with:
 | 
	
		
			
				|  |  |              path: |
 | 
	
		
			
				|  |  |                ~/opt
 | 
	
		
			
				|  |  | -            key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('tools/build_gcc_toolchain.sh') }}
 | 
	
		
			
				|  |  | +            key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('tools/build_gcc_toolchain.sh') }}-${{ hashFiles('tools/install_musl_gcc.sh') }}
 | 
	
		
			
				|  |  |          
 | 
	
		
			
				|  |  |          - if: ${{ steps.cache-dragonos-gcc.outputs.cache-hit != 'true' }}
 | 
	
		
			
				|  |  |            name: build dragonos-gcc
 | 
	
		
			
				|  |  |            continue-on-error: true
 | 
	
		
			
				|  |  | -          run: bash tools/build_gcc_toolchain.sh -f
 | 
	
		
			
				|  |  | +          run: |
 | 
	
		
			
				|  |  | +              bash tools/build_gcc_toolchain.sh -f
 | 
	
		
			
				|  |  | +              bash tools/install_musl_gcc.sh
 | 
	
		
			
				|  |  |          
 | 
	
		
			
				|  |  | +        - uses: ./.github/actions/install-apt-packages
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |          - name: Cache build tools
 | 
	
		
			
				|  |  |            id: cache-build-tools
 | 
	
		
			
				|  |  |            uses: actions/cache@v3
 | 
	
		
			
				|  |  |            env:
 | 
	
		
			
				|  |  |                cache-name: cache-build-tools
 | 
	
		
			
				|  |  | -              dadk_version: 0.1.2
 | 
	
		
			
				|  |  | +              dadk_version: 0.1.6
 | 
	
		
			
				|  |  |            with:
 | 
	
		
			
				|  |  |              path: |
 | 
	
		
			
				|  |  |                ~/.cargo
 | 
	
	
		
			
				|  | @@ -40,23 +44,38 @@ jobs:
 | 
	
		
			
				|  |  |          
 | 
	
		
			
				|  |  |          - if: ${{ steps.cache-build-tools.outputs.cache-hit != 'true' }}
 | 
	
		
			
				|  |  |            name: Install toolchain
 | 
	
		
			
				|  |  | -          continue-on-error: true
 | 
	
		
			
				|  |  | +          continue-on-error: false
 | 
	
		
			
				|  |  |            run:  | 
 | 
	
		
			
				|  |  | -            sudo sh -c "apt update && apt install -y llvm-dev libclang-dev clang gcc-multilib libssl-dev pkg-config"
 | 
	
		
			
				|  |  | +           
 | 
	
		
			
				|  |  |              cargo install cargo-binutils
 | 
	
		
			
				|  |  | -            rustup toolchain install nightly
 | 
	
		
			
				|  |  | +            rustup toolchain install nightly-x86_64-unknown-linux-gnu
 | 
	
		
			
				|  |  |              rustup toolchain install nightly-2023-01-21-x86_64-unknown-linux-gnu
 | 
	
		
			
				|  |  |              rustup toolchain install nightly-2023-08-15-x86_64-unknown-linux-gnu
 | 
	
		
			
				|  |  | -            rustup default nightly
 | 
	
		
			
				|  |  | -            rustup component add rust-src
 | 
	
		
			
				|  |  | -            rustup component add llvm-tools-preview
 | 
	
		
			
				|  |  | -            rustup target add x86_64-unknown-none
 | 
	
		
			
				|  |  | -            rustup component add rust-src --toolchain nightly-x86_64-unknown-linux-gnu
 | 
	
		
			
				|  |  |              rustup component add rust-src --toolchain nightly-2023-01-21-x86_64-unknown-linux-gnu
 | 
	
		
			
				|  |  |              rustup component add rust-src --toolchain nightly-2023-08-15-x86_64-unknown-linux-gnu
 | 
	
		
			
				|  |  | +            rustup target add x86_64-unknown-none --toolchain nightly-2023-01-21-x86_64-unknown-linux-gnu
 | 
	
		
			
				|  |  | +            rustup target add x86_64-unknown-none --toolchain nightly-2023-08-15-x86_64-unknown-linux-gnu
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +            rustup toolchain install nightly-2023-01-21-riscv64gc-unknown-linux-gnu --force-non-host
 | 
	
		
			
				|  |  | +            rustup toolchain install nightly-2023-08-15-riscv64gc-unknown-linux-gnu --force-non-host
 | 
	
		
			
				|  |  | +            rustup target add riscv64gc-unknown-none-elf --toolchain nightly-2023-01-21-riscv64gc-unknown-linux-gnu
 | 
	
		
			
				|  |  | +            rustup target add riscv64imac-unknown-none-elf --toolchain nightly-2023-01-21-riscv64gc-unknown-linux-gnu
 | 
	
		
			
				|  |  | +            rustup target add riscv64gc-unknown-none-elf --toolchain nightly-2023-08-15-riscv64gc-unknown-linux-gnu
 | 
	
		
			
				|  |  | +            rustup target add riscv64imac-unknown-none-elf --toolchain nightly-2023-08-15-riscv64gc-unknown-linux-gnu
 | 
	
		
			
				|  |  | +                
 | 
	
		
			
				|  |  | +            rustup component add rust-src --toolchain nightly-x86_64-unknown-linux-gnu
 | 
	
		
			
				|  |  | +            rustup component add rust-src
 | 
	
		
			
				|  |  | +            rustup component add llvm-tools-preview
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |              rustup component add rustfmt
 | 
	
		
			
				|  |  | +            rustup component add rustfmt --toolchain nightly-x86_64-unknown-linux-gnu
 | 
	
		
			
				|  |  |              rustup component add rustfmt --toolchain nightly-2023-01-21-x86_64-unknown-linux-gnu
 | 
	
		
			
				|  |  |              rustup component add rustfmt --toolchain nightly-2023-08-15-x86_64-unknown-linux-gnu
 | 
	
		
			
				|  |  | +            rustup component add rustfmt --toolchain nightly-2023-01-21-riscv64gc-unknown-linux-gnu
 | 
	
		
			
				|  |  | +            rustup component add rustfmt --toolchain nightly-2023-08-15-riscv64gc-unknown-linux-gnu
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +            rustup default nightly
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |              cargo install dadk --version 0.1.6
 | 
	
		
			
				|  |  |            
 | 
	
		
			
				|  |  |  
 |