mirror of
https://github.com/XRPLF/clio.git
synced 2025-11-25 22:25:55 +00:00
ci: Use ghcr.io/xrplf/clio-ci docker image (#2055)
This commit is contained in:
20
.github/workflows/build.yml
vendored
20
.github/workflows/build.yml
vendored
@@ -11,7 +11,7 @@ jobs:
|
|||||||
name: Check format
|
name: Check format
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container:
|
container:
|
||||||
image: rippleci/clio_ci:latest
|
image: ghcr.io/xrplf/clio-ci:latest
|
||||||
steps:
|
steps:
|
||||||
- name: Fix git permissions on Linux
|
- name: Fix git permissions on Linux
|
||||||
shell: bash
|
shell: bash
|
||||||
@@ -28,7 +28,7 @@ jobs:
|
|||||||
name: Check documentation
|
name: Check documentation
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container:
|
container:
|
||||||
image: rippleci/clio_ci:latest
|
image: ghcr.io/xrplf/clio-ci:latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- name: Run linter
|
- name: Run linter
|
||||||
@@ -49,25 +49,25 @@ jobs:
|
|||||||
- os: heavy
|
- os: heavy
|
||||||
conan_profile: gcc
|
conan_profile: gcc
|
||||||
build_type: Release
|
build_type: Release
|
||||||
container: '{ "image": "rippleci/clio_ci:latest" }'
|
container: '{ "image": "ghcr.io/xrplf/clio-ci:latest" }'
|
||||||
code_coverage: false
|
code_coverage: false
|
||||||
static: true
|
static: true
|
||||||
- os: heavy
|
- os: heavy
|
||||||
conan_profile: gcc
|
conan_profile: gcc
|
||||||
build_type: Debug
|
build_type: Debug
|
||||||
container: '{ "image": "rippleci/clio_ci:latest" }'
|
container: '{ "image": "ghcr.io/xrplf/clio-ci:latest" }'
|
||||||
code_coverage: true
|
code_coverage: true
|
||||||
static: true
|
static: true
|
||||||
- os: heavy
|
- os: heavy
|
||||||
conan_profile: clang
|
conan_profile: clang
|
||||||
build_type: Release
|
build_type: Release
|
||||||
container: '{ "image": "rippleci/clio_ci:latest" }'
|
container: '{ "image": "ghcr.io/xrplf/clio-ci:latest" }'
|
||||||
code_coverage: false
|
code_coverage: false
|
||||||
static: true
|
static: true
|
||||||
- os: heavy
|
- os: heavy
|
||||||
conan_profile: clang
|
conan_profile: clang
|
||||||
build_type: Debug
|
build_type: Debug
|
||||||
container: '{ "image": "rippleci/clio_ci:latest" }'
|
container: '{ "image": "ghcr.io/xrplf/clio-ci:latest" }'
|
||||||
code_coverage: false
|
code_coverage: false
|
||||||
static: true
|
static: true
|
||||||
- os: macos15
|
- os: macos15
|
||||||
@@ -98,17 +98,17 @@ jobs:
|
|||||||
conan_profile: gcc
|
conan_profile: gcc
|
||||||
build_type: Release
|
build_type: Release
|
||||||
container:
|
container:
|
||||||
image: rippleci/clio_ci:latest
|
image: ghcr.io/xrplf/clio-ci:latest
|
||||||
- os: heavy
|
- os: heavy
|
||||||
conan_profile: clang
|
conan_profile: clang
|
||||||
build_type: Release
|
build_type: Release
|
||||||
container:
|
container:
|
||||||
image: rippleci/clio_ci:latest
|
image: ghcr.io/xrplf/clio-ci:latest
|
||||||
- os: heavy
|
- os: heavy
|
||||||
conan_profile: clang
|
conan_profile: clang
|
||||||
build_type: Debug
|
build_type: Debug
|
||||||
container:
|
container:
|
||||||
image: rippleci/clio_ci:latest
|
image: ghcr.io/xrplf/clio-ci:latest
|
||||||
- os: macos15
|
- os: macos15
|
||||||
conan_profile: default_apple_clang
|
conan_profile: default_apple_clang
|
||||||
build_type: Release
|
build_type: Release
|
||||||
@@ -134,7 +134,7 @@ jobs:
|
|||||||
needs: build
|
needs: build
|
||||||
runs-on: heavy
|
runs-on: heavy
|
||||||
container:
|
container:
|
||||||
image: rippleci/clio_ci:latest
|
image: ghcr.io/xrplf/clio-ci:latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/download-artifact@v4
|
- uses: actions/download-artifact@v4
|
||||||
|
|||||||
4
.github/workflows/check_libxrpl.yml
vendored
4
.github/workflows/check_libxrpl.yml
vendored
@@ -8,7 +8,7 @@ jobs:
|
|||||||
name: Build Clio / `libXRPL ${{ github.event.client_payload.version }}`
|
name: Build Clio / `libXRPL ${{ github.event.client_payload.version }}`
|
||||||
runs-on: [self-hosted, heavy]
|
runs-on: [self-hosted, heavy]
|
||||||
container:
|
container:
|
||||||
image: rippleci/clio_ci:latest
|
image: ghcr.io/xrplf/clio-ci:latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
@@ -55,7 +55,7 @@ jobs:
|
|||||||
needs: build
|
needs: build
|
||||||
runs-on: [self-hosted, heavy]
|
runs-on: [self-hosted, heavy]
|
||||||
container:
|
container:
|
||||||
image: rippleci/clio_ci:latest
|
image: ghcr.io/xrplf/clio-ci:latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/download-artifact@v4
|
- uses: actions/download-artifact@v4
|
||||||
|
|||||||
2
.github/workflows/clang-tidy.yml
vendored
2
.github/workflows/clang-tidy.yml
vendored
@@ -14,7 +14,7 @@ jobs:
|
|||||||
clang_tidy:
|
clang_tidy:
|
||||||
runs-on: heavy
|
runs-on: heavy
|
||||||
container:
|
container:
|
||||||
image: rippleci/clio_ci:latest
|
image: ghcr.io/xrplf/clio-ci:latest
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
issues: write
|
issues: write
|
||||||
|
|||||||
2
.github/workflows/docs.yml
vendored
2
.github/workflows/docs.yml
vendored
@@ -21,7 +21,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
container:
|
container:
|
||||||
image: rippleci/clio_ci:latest
|
image: ghcr.io/xrplf/clio-ci:latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|||||||
8
.github/workflows/nightly.yml
vendored
8
.github/workflows/nightly.yml
vendored
@@ -23,12 +23,12 @@ jobs:
|
|||||||
conan_profile: gcc
|
conan_profile: gcc
|
||||||
build_type: Release
|
build_type: Release
|
||||||
static: true
|
static: true
|
||||||
container: '{ "image": "rippleci/clio_ci:latest" }'
|
container: '{ "image": "ghcr.io/xrplf/clio-ci:latest" }'
|
||||||
- os: heavy
|
- os: heavy
|
||||||
conan_profile: gcc
|
conan_profile: gcc
|
||||||
build_type: Debug
|
build_type: Debug
|
||||||
static: true
|
static: true
|
||||||
container: '{ "image": "rippleci/clio_ci:latest" }'
|
container: '{ "image": "ghcr.io/xrplf/clio-ci:latest" }'
|
||||||
uses: ./.github/workflows/build_impl.yml
|
uses: ./.github/workflows/build_impl.yml
|
||||||
with:
|
with:
|
||||||
runs_on: ${{ matrix.os }}
|
runs_on: ${{ matrix.os }}
|
||||||
@@ -56,13 +56,13 @@ jobs:
|
|||||||
conan_profile: gcc
|
conan_profile: gcc
|
||||||
build_type: Release
|
build_type: Release
|
||||||
container:
|
container:
|
||||||
image: rippleci/clio_ci:latest
|
image: ghcr.io/xrplf/clio-ci:latest
|
||||||
integration_tests: true
|
integration_tests: true
|
||||||
- os: heavy
|
- os: heavy
|
||||||
conan_profile: gcc
|
conan_profile: gcc
|
||||||
build_type: Debug
|
build_type: Debug
|
||||||
container:
|
container:
|
||||||
image: rippleci/clio_ci:latest
|
image: ghcr.io/xrplf/clio-ci:latest
|
||||||
integration_tests: true
|
integration_tests: true
|
||||||
runs-on: [self-hosted, "${{ matrix.os }}"]
|
runs-on: [self-hosted, "${{ matrix.os }}"]
|
||||||
container: ${{ matrix.container }}
|
container: ${{ matrix.container }}
|
||||||
|
|||||||
4
.github/workflows/sanitizers.yml
vendored
4
.github/workflows/sanitizers.yml
vendored
@@ -23,7 +23,7 @@ jobs:
|
|||||||
uses: ./.github/workflows/build_impl.yml
|
uses: ./.github/workflows/build_impl.yml
|
||||||
with:
|
with:
|
||||||
runs_on: ubuntu-latest # todo: change to heavy
|
runs_on: ubuntu-latest # todo: change to heavy
|
||||||
container: '{ "image": "rippleci/clio_ci:latest" }'
|
container: '{ "image": "ghcr.io/xrplf/clio-ci:latest" }'
|
||||||
disable_cache: true
|
disable_cache: true
|
||||||
conan_profile: ${{ matrix.compiler }}.${{ matrix.sanitizer }}
|
conan_profile: ${{ matrix.compiler }}.${{ matrix.sanitizer }}
|
||||||
build_type: Release
|
build_type: Release
|
||||||
@@ -50,7 +50,7 @@ jobs:
|
|||||||
# compiler: gcc
|
# compiler: gcc
|
||||||
runs-on: ubuntu-latest # todo: change to heavy
|
runs-on: ubuntu-latest # todo: change to heavy
|
||||||
container:
|
container:
|
||||||
image: rippleci/clio_ci:latest
|
image: ghcr.io/xrplf/clio-ci:latest
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
issues: write
|
issues: write
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
services:
|
services:
|
||||||
clio_develop:
|
clio_develop:
|
||||||
image: rippleci/clio_ci:latest
|
image: ghcr.io/xrplf/clio-ci:latest
|
||||||
volumes:
|
volumes:
|
||||||
- clio_develop_conan_data:/root/.conan/data
|
- clio_develop_conan_data:/root/.conan/data
|
||||||
- clio_develop_ccache:/root/.ccache
|
- clio_develop_ccache:/root/.ccache
|
||||||
|
|||||||
@@ -129,7 +129,7 @@ To generate the API docs:
|
|||||||
It is also possible to build Clio using [Docker](https://www.docker.com/) if you don't want to install all the dependencies on your machine.
|
It is also possible to build Clio using [Docker](https://www.docker.com/) if you don't want to install all the dependencies on your machine.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
docker run -it rippleci/clio_ci:latest
|
docker run -it ghcr.io/xrplf/clio-ci:latest
|
||||||
git clone https://github.com/XRPLF/clio
|
git clone https://github.com/XRPLF/clio
|
||||||
mkdir build && cd build
|
mkdir build && cd build
|
||||||
conan install .. --output-folder . --build missing --settings build_type=Release -o tests=True -o lint=False
|
conan install .. --output-folder . --build missing --settings build_type=Release -o tests=True -o lint=False
|
||||||
|
|||||||
Reference in New Issue
Block a user