yocto_client 0.1.0

Rust client for yocto
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
kind: pipeline
name: default

steps:
  - name: test
    image: rust:1.33
    commands:
      - cargo build --verbose --all
      - cargo test --verbose --all -- --test-threads=1

  - name: publish
    image: rust:1.33
    environment:
      TOKEN:
        from_secret: crates_token
    commands:
      - cargo package
      - cargo publish --token $TOKEN