tools: support ubuntu 24.04 #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ubuntu environment build | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'stable' | |
- 'beta' | |
- 'release/**' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
build_and_test: | |
name: Build and Test Ubuntu | |
runs-on: [runs-on,runner=8cpu-linux-x64,"image=ubuntu24-full-x64","run-id=${{ github.run_id }}"] | |
steps: | |
- name: Set Date as Tag | |
id: date | |
run: echo "::set-output name=date::$(date +'%Y-%m-%d')" | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build Docker Image | |
uses: docker/build-push-action@v6 | |
with: | |
push: false | |
tags: ghcr.io/px4/px4-dev:${{ steps.date.outputs.date }} | |
file: ./Tools/container/Dockerfile | |
- name: Test Docker Works | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: ghcr.io/px4/px4-dev:${{ steps.date.outputs.date }} | |
run: echo "hello world" |