Skip to content
Snippets Groups Projects
Select Git revision
  • d6824da3746d92f39c816b3b120a9d82abdaa355
  • master default
  • itm_trace
3 results

bare5.rs

Blame
  • Forked from Per Lindgren / rtfm-app
    Source project has a limited visibility.
    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