Skip to content

Commit

Permalink
Tools : update version in build script tools
Browse files Browse the repository at this point in the history
  • Loading branch information
Pradeep-Carbonix committed Aug 29, 2024
1 parent ab8ca09 commit baa8e05
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/carbonix_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ jobs:
build-sitl:
runs-on: 'windows-latest'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Prepare ccache timestamp
Expand Down Expand Up @@ -183,7 +183,7 @@ jobs:
shell: C:\cygwin\bin\bash.exe -eo pipefail '{0}'
run: >-
ln -sf /usr/bin/python3.7 /usr/bin/python && ln -sf /usr/bin/pip3.7 /usr/bin/pip &&
python -m pip install --progress-bar off empy pexpect &&
python -m pip install --progress-bar off empy==3.3.4 pexpect &&
python -m pip install --progress-bar off dronecan --upgrade &&
cp /usr/bin/ccache /usr/local/bin/ &&
cd /usr/local/bin && ln -s ccache /usr/local/bin/gcc &&
Expand Down Expand Up @@ -216,8 +216,8 @@ jobs:
retention-days: 90

build-apj:
runs-on: ubuntu-20.04
container: ardupilot/ardupilot-dev-${{ matrix.toolchain }}:v0.0.29
runs-on: ubuntu-22.04
container: ardupilot/ardupilot-dev-${{ matrix.toolchain }}:v0.1.3
strategy:
fail-fast: false # don't cancel if a job from the matrix fails
matrix:
Expand All @@ -232,7 +232,7 @@ jobs:

steps:
# git checkout the PR
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: 'recursive'
# Put ccache into github cache for faster build
Expand Down Expand Up @@ -290,7 +290,7 @@ jobs:
retention-days: 90

upload:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
needs: [build-apj, build-sitl]
steps:
- name: Checkout code
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/cx_build_compare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ concurrency:
jobs:
build-and-compare:
if: github.event.label.name == 'CX_NO_CODE_CHANGE'
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

container: ardupilot/ardupilot-dev-${{ matrix.toolchain }}:v0.0.29
container: ardupilot/ardupilot-dev-${{ matrix.toolchain }}:v0.1.3
strategy:
fail-fast: false # don't cancel if a job from the matrix fails
matrix:
Expand All @@ -27,7 +27,7 @@ jobs:
board: ["CubeOrange-Volanti", "CubeOrange-Ottano", "CarbonixF405", "CarbonixF405-no-crystal"]
steps:
# git checkout the PR
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: 'recursive'
Expand Down

0 comments on commit baa8e05

Please sign in to comment.