From 45dbc9cedf774aa35d36ca7dfee768e76d225778 Mon Sep 17 00:00:00 2001 From: Bohdan Khorolets Date: Mon, 11 Mar 2024 12:54:28 +0200 Subject: [PATCH] chore: Remove the tag push trigger for release (job duplication), get rid of cross --- .github/workflows/release.yml | 4 ---- Cross.toml | 6 ------ cross/x86_64-unknown-linux-gnu/Dockerfile | 14 -------------- 3 files changed, 24 deletions(-) delete mode 100644 Cross.toml delete mode 100644 cross/x86_64-unknown-linux-gnu/Dockerfile diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6c2af8c..8b96916 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,10 +3,6 @@ name: Release Workflow on: release: types: [created, published] - push: - tags: - - '[0-9]+.[0-9]+.[0-9]+' - - '[0-9]+.[0-9]+.[0-9]+-*' jobs: build-and-release: diff --git a/Cross.toml b/Cross.toml deleted file mode 100644 index 36c7432..0000000 --- a/Cross.toml +++ /dev/null @@ -1,6 +0,0 @@ -[target.x86_64-unknown-linux-gnu] -# Run the following command to get the build environment: -# ``` -# docker build --tag cross:x86_64-unknown-linux-gnu ./cross/x86_64-unknown-linux-gnu/ -# ``` -image = "cross:x86_64-unknown-linux-gnu" diff --git a/cross/x86_64-unknown-linux-gnu/Dockerfile b/cross/x86_64-unknown-linux-gnu/Dockerfile deleted file mode 100644 index 8eebb79..0000000 --- a/cross/x86_64-unknown-linux-gnu/Dockerfile +++ /dev/null @@ -1,14 +0,0 @@ -# syntax=docker/dockerfile-upstream:experimental - -FROM ubuntu:22.04 as build - -RUN apt-get update -qq && apt-get install -y \ - git \ - cmake \ - g++ \ - pkg-config \ - libssl-dev \ - curl \ - llvm \ - clang \ - && rm -rf /var/lib/apt/lists/*