Skip to content

Commit

Permalink
ci: Upload Artifacts to S3
Browse files Browse the repository at this point in the history
- replaces metadata and deploy workflows
- move ci scripts under Tools/ci
  • Loading branch information
mrpollo authored and dagar committed Oct 4, 2024
1 parent 8ae83a8 commit 652bb82
Show file tree
Hide file tree
Showing 6 changed files with 135 additions and 219 deletions.
66 changes: 52 additions & 14 deletions .github/workflows/build_all_targets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
timestamp: ${{ steps.set-timestamp.outputs.timestamp }}
tagname: ${{ steps.set-tag.outputs.tagname }}
branchname: ${{ steps.set-branch.outputs.branchname }}
steps:
- uses: actions/checkout@v4

Expand All @@ -41,7 +42,7 @@ jobs:
path: "./Tools/setup/requirements.txt"

- id: set-matrix
run: echo "::set-output name=matrix::$(./Tools/generate_board_targets_json.py --group)"
run: echo "::set-output name=matrix::$(./Tools/ci/generate_board_targets_json.py --group)"

- id: set-timestamp
run: echo "::set-output name=timestamp::$(date +"%Y%m%d%H%M%S")"
Expand All @@ -60,6 +61,13 @@ jobs:
if: startsWith(github.ref, 'refs/tags/v') || github.event_name == 'workflow_dispatch'
run: echo "::set-output name=tagname::${{ github.event_name == 'workflow_dispatch' && inputs.tag || github.ref_name }}"

- id: set-branch
run: echo "::set-output name=branchname::${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}"

- name: Debug Matrix Output
if: runner.debug == '1'
run: echo "$(./Tools/ci/generate_board_targets_json.py --group --verbose)"

setup:
name: Build Group [${{ matrix.group }}]
# runs-on: ubuntu-latest
Expand All @@ -74,17 +82,17 @@ jobs:
with:
fetch-depth: 0

- name: ownership workaround
- name: Git ownership workaround
run: git config --system --add safe.directory '*'

- name: ccache setup keys
- name: Setup ccache
uses: actions/cache@v4
with:
path: ~/.ccache
key: ${{ matrix.group }}-ccache-${{ needs.group_targets.outputs.timestamp }}
restore-keys: ${{ matrix.group }}-ccache-${{ needs.group_targets.outputs.timestamp }}

- name: setup ccache
- name: Configure ccache
run: |
mkdir -p ~/.ccache
echo "base_dir = ${GITHUB_WORKSPACE}" > ~/.ccache/ccache.conf
Expand All @@ -95,24 +103,54 @@ jobs:
ccache -s
ccache -z
- name: building [${{ matrix.group }}]
- name: Building [${{ matrix.group }}]
run: |
./Tools/ci/build_all_runner.sh ${{matrix.targets}}
- name: Arrange Build Artifacts
run: |
./Tools/ci_build_all_runner.sh ${{matrix.targets}}
./Tools/ci/package_build_artifacts.sh
- name: Upload px4 package
- name: Upload Build Artifacts
uses: actions/upload-artifact@v4
with:
name: px4_${{matrix.group}}_build_artifacts
path: |
build/**/*.px4
build/**/*.bin
compression-level: 0
path: artifacts/

- name: ccache post-run
- name: Cache Save
run: ccache -s

artifacts:
name: Upload Artifacts to S3
# runs-on: ubuntu-latest
runs-on: [runs-on,runner=1cpu-linux-x64,image=ubuntu22-full-x64,"run-id=${{ github.run_id }}"]
needs: [setup, group_targets]
if: contains(fromJSON('["main", "stable", "beta"]'), needs.group_targets.outputs.branchname)
steps:
- name: Download Artifacts
uses: actions/download-artifact@v4
with:
path: artifacts/
merge-multiple: true

- name: Branch Name
run: |
echo "${{ needs.group_targets.outputs.branchname }}"
- name: Uploading Artifacts to S3 [${{ needs.group_targets.outputs.branchname == 'main' && 'master' || needs.group_targets.outputs.branchname }}]
uses: jakejarvis/s3-sync-action@master
with:
args: --acl public-read
env:
AWS_S3_BUCKET: 'px4-travis'
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: 'us-west-1'
SOURCE_DIR: artifacts/
DEST_DIR: Firmware/${{ needs.group_targets.outputs.branchname == 'main' && 'master' || needs.group_targets.outputs.branchname }}/

release:
name: Release and Upload
name: Create Release and Upload Artifacts
# runs-on: ubuntu-latest
runs-on: [runs-on,runner=1cpu-linux-x64,image=ubuntu22-full-x64,"run-id=${{ github.run_id }}"]
needs: [setup, group_targets]
Expand All @@ -126,7 +164,7 @@ jobs:
mkdir artifacts
cp **/**/*.px4 artifacts/
- name: Upload Binaries
- name: Upload Binaries to Release
uses: softprops/action-gh-release@v2
with:
name: ${{ needs.group_targets.outputs.tagname }}
Expand Down
56 changes: 0 additions & 56 deletions .github/workflows/deploy_all.yml

This file was deleted.

133 changes: 0 additions & 133 deletions .github/workflows/metadata.yml

This file was deleted.

File renamed without changes.
Loading

0 comments on commit 652bb82

Please sign in to comment.