Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use token for ccache action (#136)
Browse files Browse the repository at this point in the history
Signed-off-by: eduponz <[email protected]>
(cherry picked from commit cce555d)

# Conflicts:
#	.github/workflows/build_and_test.yml
EduPonz authored and mergify[bot] committed Jun 11, 2024
1 parent e9b617c commit 543d2c9
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
@@ -57,7 +57,17 @@ jobs:
- name: Fetch repositories
shell: pwsh
run: |
<<<<<<< HEAD
vcs import src --skip-existing --input src/fastdds_python/fastdds_python.repos
=======
echo "cmake_generator=ninja" >> $Env:GITHUB_OUTPUT

- name: Setup ccache
uses: eProsima/eProsima-CI/external/setup-ccache-action@v0
with:
windows_compile_environment: msvc
api_token: ${{ secrets.GITHUB_TOKEN }}
>>>>>>> cce555d (Use token for ccache action (#136))

- name: Build workspace
shell: pwsh
@@ -107,9 +117,42 @@ jobs:
vcstool \
colcon-common-extensions
<<<<<<< HEAD
- name: Fetch repositories
run: |
vcs import --skip-existing src < src/fastdds_python/fastdds_python.repos
=======
- name: Checkout foonathan memory vendor
uses: eProsima/eProsima-CI/external/checkout@v0
with:
repository: eProsima/foonathan_memory_vendor
path: src/foonathan_memory_vendor
ref: ${{ matrix.foonathan_memory_vendor_version }}

- name: Checkout Fast CDR
uses: eProsima/eProsima-CI/external/checkout@v0
with:
repository: eProsima/Fast-CDR
path: src/fastcdr
ref: ${{ matrix.fastcdr_version }}

- name: Checkout Fast DDS
uses: eProsima/eProsima-CI/external/checkout@v0
with:
repository: eProsima/Fast-DDS
path: src/fastdds
ref: ${{ matrix.fastdds_version }}

- name: Setup CMake version
uses: eProsima/eProsima-CI/external/get-cmake@v0
with:
cmakeVersion: 3.22.6

- name: Setup ccache
uses: eProsima/eProsima-CI/external/setup-ccache-action@v0
with:
api_token: ${{ secrets.GITHUB_TOKEN }}
>>>>>>> cce555d (Use token for ccache action (#136))

- name: Build workspace
run: >

0 comments on commit 543d2c9

Please sign in to comment.