-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5bca0c9
commit 1e8a430
Showing
2 changed files
with
56 additions
and
73 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: Unstable | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- 'dev**' | ||
pull_request: | ||
paths: | ||
- 'tesseract**' | ||
- '.github/workflows/unstable.yml' | ||
- '**.repos' | ||
schedule: | ||
- cron: '0 5 * * *' | ||
release: | ||
types: | ||
- released | ||
|
||
jobs: | ||
ci: | ||
name: ${{ matrix.distro }} | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
distro: [focal, jammy] | ||
container: | ||
image: ghcr.io/tesseract-robotics/tesseract:${{ matrix.distro }}-master | ||
env: | ||
CCACHE_DIR: "$GITHUB_WORKSPACE/${{ matrix.distro }}/.ccache" | ||
DEBIAN_FRONTEND: noninteractive | ||
TZ: Etc/UTC | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
path: target_ws/src | ||
|
||
- name: Install Depends | ||
shell: bash | ||
run: | | ||
apt update | ||
apt upgrade -y | ||
apt install -y wget software-properties-common | ||
add-apt-repository ppa:levi-armstrong/tesseract-robotics | ||
apt install -y libompl-dev taskflow | ||
- name: Build and Tests | ||
uses: tesseract-robotics/colcon-action@before_script | ||
with: | ||
before-script: source /opt/tesseract/install/setup.bash | ||
ccache-prefix: ${{ matrix.distro }} | ||
vcs-file: dependencies_unstable.repos | ||
upstream-args: --cmake-args -DCMAKE_BUILD_TYPE=Release | ||
target-path: target_ws/src | ||
target-args: --cmake-args -DCMAKE_BUILD_TYPE=Debug -DTESSERACT_ENABLE_TESTING=ON |
This file was deleted.
Oops, something went wrong.