ardupilot icon indicating copy to clipboard operation
ardupilot copied to clipboard

autotest: retain elf files on build server

Open peterbarker opened this issue 3 years ago • 1 comments

peterbarker avatar Aug 02 '22 10:08 peterbarker

/home/pbarker/rc/ardupilot/../buildlogs/binaries/Copter/dirty/  
├── airbotf4
│   ├── arducopter.apj
│   ├── arducopter.elf
│   ├── arducopter.hex
│   ├── arducopter_with_bl.hex
│   ├── firmware-version.txt
│   └── git-version.txt
├── airbotf4-heli
│   ├── arducopter-heli.apj
│   ├── arducopter-heli.elf
│   ├── arducopter-heli.hex
│   ├── arducopter-heli_with_bl.hex
│   ├── firmware-version.txt
│   └── git-version.txt
├── AIRLink
│   ├── arducopter.apj
│   ├── arducopter.elf
│   ├── arducopter.hex
│   ├── arducopter_with_bl.hex
│   ├── firmware-version.txt
│   └── git-version.txt
├── AIRLink-heli
│   ├── arducopter-heli.apj
│   ├── arducopter-heli.elf
│   ├── arducopter-heli.hex
│   ├── arducopter-heli_with_bl.hex
│   ├── firmware-version.txt
│   └── git-version.txt
├── bbbmini
│   ├── arducopter
│   ├── firmware-version.txt
│   └── git-version.txt
├── bbbmini-heli
│   ├── arducopter-heli
│   ├── firmware-version.txt
│   └── git-version.txt
└── BeastF7
    ├── arducopter.apj
    ├── arducopter.elf
    ├── arducopter.hex
    ├── arducopter_with_bl.hex
    ├── firmware-version.txt
    └── git-version.txt

and, with a slightly modified version of the script to avoid checkouts:

└── Copter
    ├── 2022-08
    │   └── 2022-08-11-15:08
    │       ├── airbotf4
    │       │   ├── arducopter.apj
    │       │   ├── arducopter.hex
    │       │   ├── arducopter_with_bl.hex
    │       │   ├── firmware-version.txt
    │       │   └── git-version.txt
    │       ├── airbotf4-heli
    │       │   ├── arducopter-heli.apj
    │       │   ├── arducopter-heli.hex
    │       │   ├── arducopter-heli_with_bl.hex
    │       │   ├── firmware-version.txt
    │       │   └── git-version.txt
    │       ├── AIRLink
    │       │   ├── arducopter.apj
    │       │   ├── arducopter.hex
    │       │   ├── arducopter_with_bl.hex
    │       │   ├── firmware-version.txt
    │       │   └── git-version.txt
    │       ├── AIRLink-heli
    │       │   ├── arducopter-heli.apj
    │       │   ├── arducopter-heli.hex
    │       │   ├── arducopter-heli_with_bl.hex
    │       │   ├── firmware-version.txt
    │       │   └── git-version.txt
    │       ├── bbbmini
    │       │   ├── arducopter
    │       │   ├── firmware-version.txt
    │       │   └── git-version.txt
    │       ├── bbbmini-heli
    │       │   ├── arducopter-heli
    │       │   ├── firmware-version.txt
    │       │   └── git-version.txt
    │       └── BeastF7
    │           ├── arducopter.apj
    │           ├── arducopter.hex
    │           ├── arducopter_with_bl.hex
    │           ├── firmware-version.txt
    │           └── git-version.txt
    └── latest
        ├── airbotf4
        │   ├── arducopter.apj
        │   ├── arducopter.hex
        │   ├── arducopter_with_bl.hex
        │   ├── firmware-version.txt
        │   └── git-version.txt
        ├── airbotf4-heli
        │   ├── arducopter-heli.apj
        │   ├── arducopter-heli.hex
        │   ├── arducopter-heli_with_bl.hex
        │   ├── firmware-version.txt
        │   └── git-version.txt
        ├── AIRLink
        │   ├── arducopter.apj
        │   ├── arducopter.hex
        │   ├── arducopter_with_bl.hex
        │   ├── firmware-version.txt
        │   └── git-version.txt
        ├── AIRLink-heli
        │   ├── arducopter-heli.apj
        │   ├── arducopter-heli.hex
        │   ├── arducopter-heli_with_bl.hex
        │   ├── firmware-version.txt
        │   └── git-version.txt
        ├── bbbmini
        │   ├── arducopter
        │   ├── firmware-version.txt
        │   └── git-version.txt
        ├── bbbmini-heli
        │   ├── arducopter-heli
        │   ├── firmware-version.txt
        │   └── git-version.txt
        └── BeastF7
            ├── arducopter.apj
            ├── arducopter.hex
            ├── arducopter_with_bl.hex
            ├── firmware-version.txt
            └── git-version.txt

peterbarker avatar Aug 11 '22 05:08 peterbarker