Skip to content

autoware-base

autoware-base #3

name: autoware-base
on:
schedule:
- cron: 0 0 15 * * # every 15th of the month
workflow_dispatch:
jobs:
load-env:
uses: ./.github/workflows/load-env.yaml

Check failure on line 10 in .github/workflows/autoware-base.yaml

View workflow run for this annotation

GitHub Actions / autoware-base

Invalid workflow file

error parsing called workflow ".github/workflows/autoware-base.yaml" -> "./.github/workflows/load-env.yaml" : workflow was not found. See https://docs.github.com/actions/learn-github-actions/reusing-workflows#access-to-reusable-workflows for more information.
docker-build-and-push-base:
needs: load-env
runs-on: ubuntu-22.04
steps:
- name: Check out this repository
uses: actions/checkout@v4
- name: Free disk space
uses: ./.github/actions/free-disk-space
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Build Autoware's base images
uses: ./.github/actions/docker-build-and-push-base
with:
target-image: autoware-base
build-args: |
*.platform=linux/amd64,linux/arm64
*.args.ROS_DISTRO=${{ needs.load-env.outputs.rosdistro }}
*.args.BASE_IMAGE=${{ needs.load-env.outputs.base_image }}