Bump pypa/gh-action-pypi-publish from 1.9.0 to 1.10.3 #262
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: Test | |
on: | |
push: | |
branches: master | |
pull_request: | |
branches: master | |
env: | |
GTEST_OUTPUT: "xml:test_results" | |
BUILDCMD: "colcon build --event-handlers console_direct+ --executor sequential --cmake-args -DBUILD_HARDENING=ON -DBUILD_TESTING=ON -DBUILD_PYTHON_BINDING=ON -DPYTHON_BINDING_VERSION=${PYTHON_BINDING_VERSION} && colcon test --event-handlers console_direct+ --packages-select ad_map_access ad_physics && colcon test-result" | |
permissions: | |
contents: read | |
jobs: | |
build-test: | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-20.04 | |
compiler: gcc9 | |
EXTRA_PACKAGES: "" | |
CC: "" | |
CXX: "" | |
PYTHON_BINDING_VERSION: "3.8" | |
- os: ubuntu-20.04 | |
compiler: clang10 | |
EXTRA_PACKAGES: clang-10 | |
CC: /usr/bin/clang-10 | |
CXX: /usr/bin/clang++-10 | |
PYTHON_BINDING_VERSION: "3.10" | |
- os: ubuntu-22.04 | |
compiler: gcc11 | |
EXTRA_PACKAGES: "" | |
CC: "" | |
CXX: "" | |
PYTHON_BINDING_VERSION: "3.10" | |
- os: ubuntu-22.04 | |
compiler: clang14 | |
EXTRA_PACKAGES: clang-14 | |
CC: /usr/bin/clang-14 | |
CXX: /usr/bin/clang++-14 | |
PYTHON_BINDING_VERSION: "3.10" | |
name: ${{ matrix.os }}, ${{ matrix.compiler }}, python-${{ matrix.PYTHON_BINDING_VERSION }} | |
runs-on: ${{ matrix.os }} | |
env: | |
PYTHON_BINDING_VERSION: ${{ matrix.PYTHON_BINDING_VERSION }} | |
EXTRA_PACKAGES: ${{ matrix.EXTRA_PACKAGES }} | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@17d0e2bd7d51742c71671bd19fa12bdc9d40a3d6 # v2.8.1 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
submodules: recursive | |
- name: Install Dependencies | |
run: bash .github/workflows/install_dependencies.sh | |
- name: Build and Test | |
env: | |
CC: ${{ matrix.CC }} | |
CXX: ${{ matrix.CXX }} | |
run: | | |
sudo apt-get install ${EXTRA_PACKAGES} | |
rm -rf log build install | |
eval CC=${CC} CXX=${CXX} ${BUILDCMD} |