Skip to content

Commit

Permalink
remove circleci publish release
Browse files Browse the repository at this point in the history
  • Loading branch information
mpromonet committed Sep 9, 2024
1 parent 3d83f33 commit 6ae3c27
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 30 deletions.
24 changes: 1 addition & 23 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -179,21 +179,7 @@ jobs:
- store_artifacts:
path: /distrib

# -------------------------------------
# publish artifact on github
# -------------------------------------
github_release:
<<: *defaults

steps:
- attach_workspace:
at: /
- run: apt-get update; DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends ca-certificates golang git
- run: go get github.com/tcnksm/ghr
- deploy:
name: "Deploy to Github"
command: $HOME/go/bin/ghr -t $GITHUB_TOKEN -u $CIRCLE_PROJECT_USERNAME -r $CIRCLE_PROJECT_REPONAME $CIRCLE_TAG /distrib


workflows:
version: 2
build:
Expand Down Expand Up @@ -247,12 +233,4 @@ workflows:
filters:
tags:
only: /.*/
- github_release:
requires:
- store_artifact
filters:
branches:
ignore: /.*/
tags:
only: /.*/

9 changes: 6 additions & 3 deletions .github/workflows/cpp-cross-linux-rpi.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,24 @@
name: C/C++ CI linux cross armv6
name: C/C++ CI linux cross armv6/armv7

on: [push]

jobs:
build:
strategy:
matrix:
include:
- buildtype: Debug
arch: armv6l
crosscompiler: https://sourceforge.net/projects/raspberry-pi-cross-compilers/files/Raspberry%20Pi%20GCC%20Cross-Compiler%20Toolchains/Buster/GCC%2010.2.0/Raspberry%20Pi%201%2C%20Zero/cross-gcc-10.2.0-pi_0-1.tar.gz
- buildtype: Release
arch: armv6l
crosscompiler: https://sourceforge.net/projects/raspberry-pi-cross-compilers/files/Raspberry%20Pi%20GCC%20Cross-Compiler%20Toolchains/Buster/GCC%2010.2.0/Raspberry%20Pi%201%2C%20Zero/cross-gcc-10.2.0-pi_0-1.tar.gz
- buildtype: Debug
arch: armv7
arch: armv7l
crosscompiler: https://sourceforge.net/projects/raspberry-pi-cross-compilers/files/Raspberry%20Pi%20GCC%20Cross-Compiler%20Toolchains/Buster/GCC%2010.2.0/Raspberry%20Pi%202%2C%203/cross-gcc-10.2.0-pi_2-3.tar.gz

- buildtype: Release
arch: armv7l
crosscompiler: https://sourceforge.net/projects/raspberry-pi-cross-compilers/files/Raspberry%20Pi%20GCC%20Cross-Compiler%20Toolchains/Buster/GCC%2010.2.0/Raspberry%20Pi%202%2C%203/cross-gcc-10.2.0-pi_2-3.tar.gz

runs-on: ubuntu-latest

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# build
FROM ubuntu:24.04 as builder
FROM ubuntu:24.04 AS builder
LABEL [email protected]
ARG USERNAME=dev
WORKDIR /webrtc-streamer
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.arm64
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG IMAGE=arm64v8/ubuntu

# build
FROM ubuntu:24.04 as builder
FROM ubuntu:24.04 AS builder
LABEL [email protected]

WORKDIR /webrtc-streamer
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.rpi
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG IMAGE=balenalib/raspberry-pi

# build
FROM ubuntu:24.04 as builder
FROM ubuntu:24.04 AS builder
LABEL [email protected]

ARG ARCH=armv6l
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.windows
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# build
FROM mcr.microsoft.com/dotnet/framework/sdk:4.8.1-windowsservercore-ltsc2022 as builder
FROM mcr.microsoft.com/dotnet/framework/sdk:4.8-windowsservercore-ltsc2019 AS builder
LABEL [email protected]
WORKDIR /webrtc-streamer
COPY . /webrtc-streamer
Expand Down

0 comments on commit 6ae3c27

Please sign in to comment.