Merge pull request #1 from existedinnettw/feat/igh_ethercat
fix: rename ethercat package to igh-ethercat
This commit is contained in:
commit
9d074a6992
|
|
@ -0,0 +1,11 @@
|
|||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: "github-actions"
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "weekly"
|
||||
open-pull-requests-limit: 10
|
||||
groups:
|
||||
github-actions:
|
||||
patterns:
|
||||
- "*"
|
||||
|
|
@ -18,7 +18,7 @@ jobs:
|
|||
has_targets: ${{ steps.detect.outputs.has_targets }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v6
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
|
|
@ -59,19 +59,14 @@ jobs:
|
|||
CONAN_PASSWORD: ${{ secrets.CONAN_PASSWORD || secrets.GITEA_TOKEN }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v6
|
||||
|
||||
- name: Install host build tools
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y --no-install-recommends \
|
||||
build-essential \
|
||||
gcc-14 \
|
||||
g++-14 \
|
||||
cmake \
|
||||
ninja-build \
|
||||
graphviz \
|
||||
crudini
|
||||
uses: awalsh128/cache-apt-pkgs-action@latest
|
||||
with:
|
||||
packages: build-essential gcc-14 g++-14 cmake ninja-build graphviz crudini
|
||||
version: 1.0
|
||||
execute_install_scripts: true
|
||||
|
||||
- name: Set gcc-14 as default
|
||||
run: |
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ jobs:
|
|||
has_targets: ${{ steps.detect.outputs.has_targets }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v6
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
|
|
@ -56,19 +56,14 @@ jobs:
|
|||
matrix: ${{ fromJson(needs.detect-targets.outputs.matrix) }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v6
|
||||
|
||||
- name: Install host build tools
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y --no-install-recommends \
|
||||
build-essential \
|
||||
gcc-14 \
|
||||
g++-14 \
|
||||
cmake \
|
||||
ninja-build \
|
||||
graphviz \
|
||||
crudini
|
||||
uses: awalsh128/cache-apt-pkgs-action@latest
|
||||
with:
|
||||
packages: build-essential gcc-14 g++-14 cmake ninja-build graphviz crudini
|
||||
version: 1.0
|
||||
execute_install_scripts: true
|
||||
|
||||
- name: Set gcc-14 as default
|
||||
run: |
|
||||
|
|
|
|||
|
|
@ -12,5 +12,4 @@ The goal of this repo is provide some **non-official** recipes for libraries tha
|
|||
|
||||
* bibliography: [conan-center-index](https://github.com/conan-io/conan-center-index/tree/master)
|
||||
* [audacity/conan-recipes](https://github.com/audacity/conan-recipes)
|
||||
* [bkinnightskytw/ethercat](https://gitlab.com/bkinnightskytw/ethercat/-/tree/backport/1.5.3-conan?ref_type=heads)
|
||||
|
||||
* [bkinnightskytw/ethercat](https://gitlab.com/bkinnightskytw/ethercat/-/tree/backport/1.5.3-conan?ref_type=heads) (recipe: `igh-ethercat`)
|
||||
|
|
|
|||
|
|
@ -5,8 +5,8 @@ from conan.tools.files import copy, get
|
|||
import os
|
||||
|
||||
|
||||
class EthercatConan(ConanFile):
|
||||
name = "ethercat"
|
||||
class IghEthercatConan(ConanFile):
|
||||
name = "igh-ethercat"
|
||||
license = "LGPL-2.1-only"
|
||||
author = "Florian Pose <fp@igh.de>"
|
||||
url = "https://gitlab.com/etherlab.org/ethercat"
|
||||
Loading…
Reference in New Issue