Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Lokesh Ramina committed Sep 25, 2023
1 parent 8852dc3 commit 67c3491
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/carbonix_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ concurrency:
cancel-in-progress: true

jobs:
build:
carbonix-build:
runs-on: ubuntu-22.04
container: ardupilot/ardupilot-dev-${{ matrix.toolchain }}:v0.1.0
strategy:
Expand All @@ -178,10 +178,6 @@ jobs:
shell: bash
run: |
git config --global --add safe.directory ${GITHUB_WORKSPACE}
if [[ ${{ matrix.toolchain }} == "clang" ]]; then
export CC=clang
export CXX=clang++
fi
PATH="/github/home/.local/bin:$PATH"
./waf configure --board sitl
./waf build --target bin/arduplane
17 changes: 17 additions & 0 deletions .github/workflows/hello.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: World

on:
workflow_dispatch

jobs:
hello:
runs-on: ubuntu-20.04
steps:
- name: Hello World step
run: echo "Hello World!"

hi:
runs-on: ubuntu-20.04
steps:
- name: Say Hi
run: echo "Hi World!"

0 comments on commit 67c3491

Please sign in to comment.