Skip to content

Commit

Permalink
ci: Remove packaging-darwin jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
blukat29 committed Jul 3, 2024
1 parent 4ba2df6 commit 10f1388
Showing 1 changed file with 1 addition and 52 deletions.
53 changes: 1 addition & 52 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,6 @@ executors:
KAFKA_CFG_LISTENER_SECURITY_PROTOCOL_MAP: CONTROLLER:PLAINTEXT,PLAINTEXT:PLAINTEXT
KAFKA_CFG_CONTROLLER_LISTENER_NAMES: CONTROLLER
KAFKA_CFG_INTER_BROKER_LISTENER_NAME: PLAINTEXT
darwin-executor: # this executor is for packaging darwin binaries
working_directory: ~/go/src/github.com/kaiachain/kaia
macos:
xcode: 14.2.0
resource_class: macos.x86.medium.gen2
rpm-executor: # this executor is for packaging rpm binaries
working_directory: /go/src/github.com/kaiachain/kaia
docker:
Expand All @@ -75,18 +70,6 @@ executors:
- image: cimg/go:1.22.1

commands:
install-darwin-dependencies:
description: Install dependencies on darwin machine
steps:
- run:
name: "install darwin dependencies"
command: |
# install awscli
brew install awscli
# install golang
curl -O https://dl.google.com/go/go1.22.1.darwin-amd64.tar.gz
mkdir $HOME/go1.22.1
tar -C $HOME/go1.22.1 -xzf go1.22.1.darwin-amd64.tar.gz
pre-build:
description: "before build, set version"
steps:
Expand Down Expand Up @@ -488,28 +471,6 @@ jobs:
- upload-repo:
item: "kcn kpn ken"

packaging-darwin:
executor: darwin-executor
steps:
- checkout
- install-darwin-dependencies
- pre-build
- build-packaging:
os-network: "darwin-amd64"
- upload-repo

packaging-darwin-baobab:
executor: darwin-executor
steps:
- checkout
- install-darwin-dependencies
- pre-build
- build-packaging:
os-network: "darwin-amd64"
baobab: "-b"
- upload-repo:
item: "kcn kpn ken"

rpm-tagged:
executor: rpm-executor
steps:
Expand Down Expand Up @@ -632,8 +593,6 @@ workflows:
- rpm-tagged-baobab
- packaging-linux
- packaging-linux-baobab
- packaging-darwin
- packaging-darwin-baobab
filters:
tags:
only: /^v[0-9]+\.[0-9]+\.[0-9]/
Expand All @@ -646,8 +605,6 @@ workflows:
- rpm-tagged-baobab
- packaging-linux
- packaging-linux-baobab
- packaging-darwin
- packaging-darwin-baobab
filters:
tags:
only: /^v[0-9]+\.[0-9]+\.[0-9]+-rc\.[0-9]+.*/
Expand All @@ -670,14 +627,6 @@ workflows:
filters: *filter-only-version-tag
requires:
- pass-tests
- packaging-darwin:
filters: *filter-only-version-tag
requires:
- pass-tests
- packaging-darwin-baobab:
filters: *filter-only-version-tag
requires:
- pass-tests

- major-tagging:
filters:
Expand Down Expand Up @@ -712,4 +661,4 @@ workflows:
branches:
only: dev
jobs:
- rpc-tester-report
- rpc-tester-report

0 comments on commit 10f1388

Please sign in to comment.