Skip to content
Snippets Groups Projects
Select Git revision
  • ca3b6546dcceb245e5ce146d63d0d0a58d9254ef
  • master default protected
  • usb
  • fresk
4 results

bare9.rs

Blame
  • script.sh 155 B
    set -ex
    
    main() {
        cross build --target $TARGET
    
        if [ $TARGET = x86_64-unknown-linux-gnu ]; then
            cross test --target $TARGET
        fi
    }
    
    main