Compare commits
No commits in common. "a9b4de2731f4cec26afdcaf53a16e3d5aa1bdc6b" and "409cc76afd6a2740e268e4f324278e7c2f3967f2" have entirely different histories.
a9b4de2731
...
409cc76afd
|
@ -1,32 +0,0 @@
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
master
|
|
||||||
env:
|
|
||||||
CARGO_TERM_COLOR: always
|
|
||||||
jobs:
|
|
||||||
build_x64:
|
|
||||||
runs_on: docker
|
|
||||||
steps:
|
|
||||||
- name: Checkout code
|
|
||||||
with: actions/checkout@v2
|
|
||||||
- name: Setup Go toolchain
|
|
||||||
uses: actions/setup-go@v4
|
|
||||||
- name: Setup Rust toolchain
|
|
||||||
uses: actions-rs/toolchain@v1
|
|
||||||
with:
|
|
||||||
profile: minimal
|
|
||||||
toolchain: stable
|
|
||||||
override: true
|
|
||||||
- name: Enable Rust dependency caching
|
|
||||||
uses: Swatinem/rust-cache@v2
|
|
||||||
- name: Compile release binary
|
|
||||||
uses: actions-rs/cargo@v1
|
|
||||||
with:
|
|
||||||
command: build
|
|
||||||
args: --release --bin tfclient
|
|
||||||
- name: Upload binary
|
|
||||||
uses: actions/upload-artifact@v3
|
|
||||||
with:
|
|
||||||
name: tfclient
|
|
||||||
path: target/release/tfclient
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "trifid-api"
|
name = "trifid-api"
|
||||||
version = "0.2.1"
|
version = "0.2.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Pure-rust Defined Networking compatible management server"
|
description = "Pure-rust Defined Networking compatible management server"
|
||||||
license = "GPL-3.0-or-later"
|
license = "GPL-3.0-or-later"
|
||||||
|
|
Loading…
Reference in New Issue