From 4d0d66e037b2d60ae3e397f27579c6bb2edd5857 Mon Sep 17 00:00:00 2001 From: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com> Date: Thu, 1 Dec 2022 22:12:17 +0900 Subject: [PATCH] ci: remove Humble CI workflows (#569) Signed-off-by: Kenji Miyake Signed-off-by: Kenji Miyake --- .github/sync-files.yaml | 4 --- .github/workflows/build-humble.yaml | 45 ----------------------------- 2 files changed, 49 deletions(-) delete mode 100644 .github/workflows/build-humble.yaml diff --git a/.github/sync-files.yaml b/.github/sync-files.yaml index 7fb520e219f14..bf58c2952d00b 100644 --- a/.github/sync-files.yaml +++ b/.github/sync-files.yaml @@ -33,10 +33,6 @@ pre-commands: | sd "GITHUB_TOKEN" "REPO_TOKEN" {source} - - source: .github/workflows/build-humble.yaml - pre-commands: | - sd "GITHUB_TOKEN" "REPO_TOKEN" {source} - - source: .github/workflows/load-env.yaml - source: .github/workflows/setup-universe.yaml diff --git a/.github/workflows/build-humble.yaml b/.github/workflows/build-humble.yaml deleted file mode 100644 index d6ea466c4c097..0000000000000 --- a/.github/workflows/build-humble.yaml +++ /dev/null @@ -1,45 +0,0 @@ -name: build-humble - -on: - schedule: - - cron: 0 12 * * * - workflow_dispatch: - -jobs: - build-humble: - runs-on: ubuntu-latest - container: ubuntu:22.04 - steps: - - name: Check out repository - uses: actions/checkout@v3 - with: - ref: humble - - - name: Run setup script - run: | - ./setup-dev-env.sh -y - - - name: Set git config - uses: autowarefoundation/autoware-github-actions/set-git-config@v1 - with: - token: ${{ secrets.REPO_TOKEN }} - - - name: Run vcs import - run: | - mkdir src - vcs import src < autoware.repos - - - name: Run vcs export - run: | - vcs export --exact src || true - - - name: Run rosdep install - run: | - sudo apt-get -y update - rosdep update - DEBIAN_FRONTEND=noninteractive rosdep install -y --from-paths src --ignore-src --rosdistro humble - - - name: Build - run: | - . /opt/ros/humble/setup.sh - colcon build --event-handlers console_cohesion+ --cmake-args -DCMAKE_BUILD_TYPE=Release