Skip to content

Commit

Permalink
fix(ci): add semicolons to separate commands
Browse files Browse the repository at this point in the history
  • Loading branch information
quantum9Innovation committed Feb 2, 2025
1 parent c774425 commit d3fc608
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,26 +15,26 @@ jobs:
- name: Setup CI binary cache
uses: DeterminateSystems/magic-nix-cache-action@main

Check warning on line 16 in .github/workflows/build.yml

View workflow job for this annotation

GitHub Actions / build

Magic Nix Cache is deprecated

Magic Nix Cache has been deprecated due to a change in the underlying GitHub APIs and will stop working on 1 February 2025. To continue caching Nix builds in GitHub Actions, use FlakeHub Cache instead. Replace... uses: DeterminateSystems/magic-nix-cache-action@main ...with... uses: DeterminateSystems/flakehub-cache-action@main For more details: https://dtr.mn/magic-nix-cache-eol

Check warning on line 16 in .github/workflows/build.yml

View workflow job for this annotation

GitHub Actions / build

Magic Nix Cache is deprecated

Magic Nix Cache has been deprecated due to a change in the underlying GitHub APIs and will stop working on 1 February 2025. To continue caching Nix builds in GitHub Actions, use FlakeHub Cache instead. Replace... uses: DeterminateSystems/magic-nix-cache-action@main ...with... uses: DeterminateSystems/flakehub-cache-action@main For more details: https://dtr.mn/magic-nix-cache-eol
- name: Launch Nix development environment and build Nix package manifests
run: cd ..
git clone https://github.com/ArcturusNavigation/arcturus_nix
cd arcturus_nix
chmod +x *.sh
chmod +x ci/*.sh
ci/pull.sh
cp -r ../all_seaing_vehicle dev_ws/src/
nix develop -i --accept-flake-config --keep HOME --command bash -c "build;"
run: cd ..;
git clone https://github.com/ArcturusNavigation/arcturus_nix;
cd arcturus_nix;
chmod +x *.sh;
chmod +x ci/*.sh;
ci/pull.sh;
cp -r ../all_seaing_vehicle dev_ws/src/;
nix develop -i --accept-flake-config --keep HOME --command bash -c "build;";
- name: Build modules and run nodes
run: cd ../arcturus_nix;
nix develop -i --accept-flake-config --keep HOME --command bash -c "
ci/run.sh all_seaing_autonomy
ci/run.sh all_seaing_bringup
ci/run.sh all_seaing_common
ci/run.sh all_seaing_controller
ci/run.sh all_seaing_description
ci/run.sh all_seaing_driver
ci/run.sh all_seaing_interfaces
ci/run.sh all_seaing_navigation
ci/run.sh all_seaing_perception
ci/run.sh all_seaing_rviz_plugins
ci/run.sh all_seaing_utility
ci/run.sh all_seaing_autonomy;
ci/run.sh all_seaing_bringup;
ci/run.sh all_seaing_common;
ci/run.sh all_seaing_controller;
ci/run.sh all_seaing_description;
ci/run.sh all_seaing_driver;
ci/run.sh all_seaing_interfaces;
ci/run.sh all_seaing_navigation;
ci/run.sh all_seaing_perception;
ci/run.sh all_seaing_rviz_plugins;
ci/run.sh all_seaing_utility;
"

0 comments on commit d3fc608

Please sign in to comment.