Skip to content

Commit

Permalink
Testing CI
Browse files Browse the repository at this point in the history
Signed-off-by: Alberto Tudela <[email protected]>
  • Loading branch information
ajtudela committed Oct 17, 2024
1 parent 1b37767 commit a150f53
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@ jobs:
- name: Cache APT Packages
uses: awalsh128/[email protected]
with:
packages: g++ cmake subversion doxygen libxml2-dev libssl-dev libsqlite3-dev libboost-all-dev libogre-1.9-dev libsvn-dev libopencv-dev binutils-dev libiberty-dev libcurl4-gnutls-dev libprocps-dev libqwt-qt5-dev libqt5webkit5-dev libqwtmathml-qt5-dev libqt5opengl5-dev libqt5svg5-dev qt*5-dev qttools5-dev-tools git
packages: git g++ cmake subversion doxygen libxml2-dev libssl-dev \
libsqlite3-dev libboost-all-dev libogre-1.9-dev libsvn-dev \
libopencv-dev binutils-dev libiberty-dev libcurl4-gnutls-dev \
libprocps-dev libqwt-qt5-dev libqt5webkit5-dev libqwtmathml-qt5-dev \
libqt5opengl5-dev libqt5svg5-dev qt*5-dev qttools5-dev-tools
- name: Cache MIRA
id: cache-mira
uses: actions/cache@v4
Expand All @@ -31,9 +35,10 @@ jobs:
- name: Install MIRA
if: steps.cache-mira.outputs.cache-hit != 'true'
run: |
curl -o mira-installer-binary.sh https://www.mira-project.org/downloads/mira-installer-binary.sh
curl -o mira-installer-binary.sh ${{ env.MIRA_URL }}/mira-installer-binary.sh
chmod +x mira-installer-binary.sh
./mira-installer-binary.sh -s ubuntu-2204lts-x64 -d ${{ env.MIRA_PATH }}
install-scitos2:
runs-on: ubuntu-22.04
needs: install-mira
Expand All @@ -42,8 +47,6 @@ jobs:
uses: awalsh128/[email protected]
with:
packages: libprocps-dev
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup ROS 2
uses: ros-tooling/[email protected]
with:
Expand All @@ -62,6 +65,8 @@ jobs:
restore-keys: |
scitos2-${{ runner.os }}-${{ github.sha }}
scitos2-${{ runner.os }}
- name: Checkout Repository
uses: actions/checkout@v4
- name: Build packages
env:
MIRA_PATH: ${{ env.MIRA_PATH }}
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/docker_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,13 @@ concurrency:
jobs:
docker-image:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- name: Extract branch name
shell: bash
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
id: extract_branch

- name: Checkout
uses: actions/[email protected]

Expand Down

0 comments on commit a150f53

Please sign in to comment.