From 98fbf253a701fa55924a070374b52b91706375f3 Mon Sep 17 00:00:00 2001 From: Felix Krull Date: Sat, 20 Oct 2018 12:19:33 +0200 Subject: [PATCH] Get rid of pre-package workaround --- rust-bindings/rust/.gitlab-ci.yml | 2 -- rust-bindings/rust/Makefile | 6 ------ 2 files changed, 8 deletions(-) diff --git a/rust-bindings/rust/.gitlab-ci.yml b/rust-bindings/rust/.gitlab-ci.yml index eb432c48..bef97f75 100644 --- a/rust-bindings/rust/.gitlab-ci.yml +++ b/rust-bindings/rust/.gitlab-ci.yml @@ -65,13 +65,11 @@ pages: publish_libostree-sys: stage: publish script: - - make pre-package - cargo publish --verbose --manifest-path libostree-sys/Cargo.toml --token $CRATES_IO_TOKEN when: manual publish_libostree: stage: publish script: - - make pre-package - cargo publish --verbose --token $CRATES_IO_TOKEN when: manual diff --git a/rust-bindings/rust/Makefile b/rust-bindings/rust/Makefile index 09dccb8f..9676a755 100644 --- a/rust-bindings/rust/Makefile +++ b/rust-bindings/rust/Makefile @@ -3,12 +3,6 @@ all: generate-libostree-sys generate-libostree .PHONY: update-gir-files -# -- cargo package helpers -- -pre-package: - cp LICENSE libostree-sys/ - cp README.md LICENSE libostree/ - - # -- gir generation -- target/tools/bin/gir: cargo install --root target/tools --git https://github.com/gtk-rs/gir.git -- gir