Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Acars bridge #42

Merged
merged 33 commits into from
Jan 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
bc8c920
first hack at running with bridge
fredclausen Jan 1, 2024
91725fb
Update run
fredclausen Jan 1, 2024
4380486
Update acars_bridge
fredclausen Jan 1, 2024
3edd3ce
Update acars_bridge
fredclausen Jan 1, 2024
7de600b
Update acars_bridge
fredclausen Jan 1, 2024
c95e3e3
Update acars_bridge
fredclausen Jan 1, 2024
e37cc3c
Update acars_bridge
fredclausen Jan 1, 2024
94b6e05
fix startup
fredclausen Jan 1, 2024
f6af08d
Update healthcheck.sh
fredclausen Jan 1, 2024
001acc0
shoosh stdout logging
fredclausen Jan 1, 2024
1828848
updates
fredclausen Jan 1, 2024
2363743
Update acarsdec
fredclausen Jan 1, 2024
d1f2435
Update acarsdec
fredclausen Jan 1, 2024
30f7ffe
Update acars_bridge
fredclausen Jan 1, 2024
95f2c7d
create a test tag
fredclausen Jan 1, 2024
b75b4cd
Update deploy.yml
fredclausen Jan 1, 2024
1711f6a
Update deploy.yml
fredclausen Jan 1, 2024
990a183
clean up disk space as we build
fredclausen Jan 1, 2024
c1cbf4e
Update README.md
fredclausen Jan 1, 2024
cf57895
Update README.md
fredclausen Jan 1, 2024
97e70c9
Update README.md
fredclausen Jan 1, 2024
85fcd9d
use cached binary for build
fredclausen Jan 6, 2024
40f40a2
Update deploy.yml
fredclausen Jan 6, 2024
edffafc
Update deploy.yml
fredclausen Jan 6, 2024
ace1e24
Delete Dockerfile.build_binary
fredclausen Jan 6, 2024
b809a4b
Update Dockerfile
fredclausen Jan 6, 2024
3ad67f2
update test-pr to use the modern build
fredclausen Jan 6, 2024
76d1bc5
Update Dockerfile
fredclausen Jan 6, 2024
55d6312
Update Dockerfile
fredclausen Jan 6, 2024
3327c9a
Update Dockerfile
fredclausen Jan 6, 2024
fdee7fb
Update 01-acarsdec
fredclausen Jan 7, 2024
d1f3dfc
Merge branch 'main' into acars-bridge
fredclausen Jan 7, 2024
4d0fc3a
Update LICENSE
fredclausen Jan 7, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
193 changes: 193 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ on:
type: boolean
description: "Use base image testpr"
default: false
build_latest_as_test:
required: false
type: boolean
description: "Build latest as test"
default: false

# Build and deploy the image on pushes to main branch
push:
Expand Down Expand Up @@ -44,8 +49,164 @@ jobs:
run: |
echo "Workflow dispatch reason: $INPUTS_REASON"
echo "Use test image: $INPUTS_USE_TEST_IMAGE"
binary_build_armv7:
name: Build Binary - armv7
runs-on: ubuntu-latest
# needs: test_rust_functionality

steps:
- name: Checkout
uses: actions/checkout@v4.1.1
with:
fetch-depth: 0
repository: sdr-enthusiasts/acars-bridge

- name: Run Docker on tmpfs
uses: JonasAlfredsson/docker-on-tmpfs@v1
with:
tmpfs_size: 5
swap_size: 4
swap_location: "/mnt/swapfile"

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Build armv7
uses: docker/build-push-action@v5
with:
context: .
push: false
file: Dockerfile.build_binary
tags: acars-bridge:armv7
platforms: linux/arm/v7
outputs: type=local,dest=./image_armv7/

- name: Upload artifact armv7 binary
uses: actions/upload-artifact@v4.0.0
with:
name: acars-bridge.armv7
path: ./image_armv7/acars-bridge

binary_build_arm64:
name: Build Binary - arm64
runs-on: ubuntu-latest
# needs: test_rust_functionality

steps:
- name: Checkout
uses: actions/checkout@v4.1.1
with:
fetch-depth: 0
repository: sdr-enthusiasts/acars-bridge

- name: Run Docker on tmpfs
uses: JonasAlfredsson/docker-on-tmpfs@v1
with:
tmpfs_size: 5
swap_size: 4
swap_location: "/mnt/swapfile"

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Build arm64
uses: docker/build-push-action@v5
with:
context: .
push: false
file: Dockerfile.build_binary
tags: acars-bridge:arm64
platforms: linux/arm64
outputs: type=local,dest=./image_arm64/

- name: Upload artifact arm64 binary
uses: actions/upload-artifact@v4.0.0
with:
name: acars-bridge.arm64
path: ./image_arm64/acars-bridge

binary_build_amd64:
name: Build Binary - amd64
runs-on: ubuntu-latest
# needs: test_rust_functionality

steps:
- name: Checkout
uses: actions/checkout@v4.1.1
with:
fetch-depth: 0
repository: sdr-enthusiasts/acars-bridge

- name: Run Docker on tmpfs
uses: JonasAlfredsson/docker-on-tmpfs@v1
with:
tmpfs_size: 5
swap_size: 4
swap_location: "/mnt/swapfile"

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Build amd64
uses: docker/build-push-action@v5
with:
context: .
push: false
file: Dockerfile.build_binary
tags: acars-bridge:amd64
platforms: linux/amd64
outputs: type=local,dest=./image_amd64/

- name: Upload artifact amd64 binary
uses: actions/upload-artifact@v4.0.0
with:
name: acars-bridge.amd64
path: ./image_amd64/acars-bridge

consolidate_binaries:
name: Consolidate & Cache Binaries
runs-on: ubuntu-latest
needs: [binary_build_amd64, binary_build_arm64, binary_build_armv7]
steps:
- run: mkdir -p ./bin

- uses: actions/download-artifact@v4.0.0
with:
name: acars-bridge.amd64
path: ./bin/acars-bridge.amd64

- uses: actions/download-artifact@v4.0.0
with:
name: acars-bridge.armv7
path: ./bin/acars-bridge.armv7

- uses: actions/download-artifact@v4.0.0
with:
name: acars-bridge.arm64
path: ./bin/acars-bridge.arm64

- run: ls -la ./bin/*

- name: Cache Binaries
uses: actions/cache@v3
with:
path: ./bin/
key: ${{ github.run_id }}
build_and_push:
name: Image Build & Push
needs: [consolidate_binaries]
if: |
github.event.inputs.build_latest_as_test == 'false' ||
github.event.inputs.build_latest_as_test == ''
uses: sdr-enthusiasts/common-github-workflows/.github/workflows/build_and_push_image.yml@main
with:
push_enabled: true
Expand All @@ -63,5 +224,37 @@ jobs:
build_platform_specific: ${{ github.event.inputs.use_test_image == 'false' || github.event.inputs.use_test_image == '' }}
build_nohealthcheck: ${{ github.event.inputs.use_test_image == 'false' || github.event.inputs.use_test_image == '' }}
build_baseimage_url: :acars-decoder/:acars-decoder-test-pr
cache_enabled: true
cache_path: ./bin/
cache_key: ${{ github.run_id }}
secrets:
ghcr_token: ${{ secrets.GITHUB_TOKEN }}

deploy_test:
name: Deploy as test
needs: [consolidate_binaries]
if: |
github.event.inputs.build_latest_as_test == 'true' &&
(github.event.inputs.use_test_image == 'false' || github.event.inputs.use_test_image == '')
uses: sdr-enthusiasts/common-github-workflows/.github/workflows/build_and_push_image.yml@main
with:
push_enabled: true
push_destinations: ghcr.io
ghcr_repo_owner: ${{ github.repository_owner }}
ghcr_repo: ${{ github.repository }}
build_with_tmpfs: true
get_version_method: git_commit_hash_short
# set build_latest to true if github.event.inputs.use_test_image is false
build_latest: true
docker_latest_tag: test
build_baseimage_test: false
# only build the entire stack if we are not using the test image
build_version_specific: false
build_platform_specific: false
build_nohealthcheck: false
build_baseimage_url: :acars-decoder/:acars-decoder-test-pr
cache_enabled: true
cache_path: ./bin/
cache_key: ${{ github.run_id }}
secrets:
ghcr_token: ${{ secrets.GITHUB_TOKEN }}
Loading