ci: comment user id #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build all targets | |
on: | |
push: | |
branches: | |
- 'mrpollo/ci_runner_groups' | |
jobs: | |
group_targets: | |
runs-on: [runs-on,runner=8cpu-linux-x64,"run-id=${{ github.run_id }}"] | |
container: | |
image: px4io/px4-dev-base-focal:2021-09-08 | |
options: --user 1000 | |
outputs: | |
matrix: ${{ steps.set-matrix.outputs.matrix }} | |
timestamp: ${{ steps.set-timestamp.outputs.timestamp }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.ACCESS_TOKEN }} | |
- id: set-matrix | |
run: echo "::set-output name=matrix::$(./Tools/generate_board_targets_json.py --group)" | |
- id: set-timestamp | |
run: echo "::set-output name=timestamp::$(date +"%Y%m%d%H%M%S")" | |
setup: | |
name: ${{ matrix.group }} | |
runs-on: [runs-on,runner=8cpu-linux-x64,"run-id=${{ github.run_id }}"] | |
needs: group_targets | |
strategy: | |
matrix: ${{ fromJson(needs.group_targets.outputs.matrix) }} | |
container: | |
image: ${{ matrix.container }} | |
# options: --user 1001 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.ACCESS_TOKEN }} | |
# - name: ownership workaround | |
# run: git config --system --add safe.directory '*' | |
- name: ccache setup keys | |
uses: actions/cache@v4 | |
with: | |
path: ~/.ccache | |
key: ${{ matrix.arch }}-ccache-${{ needs.group_targets.outputs.timestamp }} | |
restore-keys: ${{ matrix.arch }}-ccache-${{ needs.group_targets.outputs.timestamp }} | |
- name: setup ccache | |
run: | | |
mkdir -p ~/.ccache | |
echo "base_dir = ${GITHUB_WORKSPACE}" > ~/.ccache/ccache.conf | |
echo "compression = true" >> ~/.ccache/ccache.conf | |
echo "compression_level = 6" >> ~/.ccache/ccache.conf | |
echo "max_size = 120M" >> ~/.ccache/ccache.conf | |
echo "hash_dir = false" >> ~/.ccache/ccache.conf | |
ccache -s | |
ccache -z | |
- name: build target group | |
run: | | |
./Tools/ci_build_all_runner.sh ${{matrix.targets}} | |
- name: ccache post-run | |
run: ccache -s |