diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9912ced..f1f14eb 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,6 +1,6 @@ # This is a basic workflow to help you get started with Actions -name: Mkdocs +name: Build Snap # Controls when the action will run. on: @@ -14,6 +14,15 @@ on: workflow_dispatch: jobs: + SetupEnv: + runs-on: ubuntu-latest + strategy: + fail-fast: false + steps: + - name: Setup ROS + uses: ros-tooling/setup-ros@v0.7 + - run: vcs --help + BuildSnaps: runs-on: ubuntu-latest steps: @@ -23,9 +32,9 @@ jobs: with: fetch-depth: 0 - - run: sudo snap install snapcraft + run: sudo snap install snapcraft --classic - run: | cd simple-listener-py ./build-snap-amd64.sh - +