Merge pull request #1348 from anarkiwi/noworker #1202
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: buildx | |
on: | |
push: | |
branches: main | |
tags: 'v*' | |
jobs: | |
buildx-base: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Get the version | |
id: get_version | |
run: echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3) | |
- name: Change for main | |
id: change_version | |
run: if [ "${{ steps.get_version.outputs.VERSION }}" == "main" ]; then echo ::set-output name=VERSION::latest; else echo ::set-output name=VERSION::${{ steps.get_version.outputs.VERSION }}; fi | |
- name: Set up qemu | |
uses: docker/setup-qemu-action@v3 | |
with: | |
platforms: all | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Docker Login | |
env: | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_TOKEN }} | |
run: | | |
echo "${DOCKER_PASSWORD}" | docker login --username "${{ secrets.DOCKER_USERNAME }}" --password-stdin | |
if: github.repository == 'iqtlabs/gamutrf' && github.event_name == 'push' | |
- name: Build and push platforms vkfft | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
file: docker/Dockerfile.vkfft | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: iqtlabs/gamutrf-vkfft:${{ steps.change_version.outputs.VERSION }} | |
if: github.repository == 'iqtlabs/gamutrf' && github.event_name == 'push' | |
- name: Build and push platforms sigmf | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
file: docker/Dockerfile.sigmf | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: iqtlabs/gamutrf-sigmf:${{ steps.change_version.outputs.VERSION }} | |
if: github.repository == 'iqtlabs/gamutrf' && github.event_name == 'push' | |
- name: Build and push platforms driver | |
uses: docker/build-push-action@v6 | |
with: | |
context: docker | |
file: docker/Dockerfile.driver | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: iqtlabs/gamutrf-driver:${{ steps.change_version.outputs.VERSION }} | |
if: github.repository == 'iqtlabs/gamutrf' && github.event_name == 'push' | |
- name: Build and push platforms base | |
uses: docker/build-push-action@v6 | |
with: | |
context: docker | |
file: docker/Dockerfile.base | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: iqtlabs/gamutrf-base:${{ steps.change_version.outputs.VERSION }} | |
if: github.repository == 'iqtlabs/gamutrf' && github.event_name == 'push' | |
- name: Build and push platforms waterfall | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
file: docker/Dockerfile.waterfall | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: iqtlabs/gamutrf-waterfall:${{ steps.change_version.outputs.VERSION }} | |
if: github.repository == 'iqtlabs/gamutrf' && github.event_name == 'push' | |
buildx-gamutrf: | |
needs: [buildx-base] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Get the version | |
id: get_version | |
run: echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3) | |
- name: Change for main | |
id: change_version | |
run: if [ "${{ steps.get_version.outputs.VERSION }}" == "main" ]; then echo ::set-output name=VERSION::latest; else echo ::set-output name=VERSION::${{ steps.get_version.outputs.VERSION }}; fi | |
- name: Set up qemu | |
uses: docker/setup-qemu-action@v3 | |
with: | |
platforms: all | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Docker Login | |
env: | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_TOKEN }} | |
run: | | |
echo "${DOCKER_PASSWORD}" | docker login --username "${{ secrets.DOCKER_USERNAME }}" --password-stdin | |
if: github.repository == 'iqtlabs/gamutrf' && github.event_name == 'push' | |
- name: Build and push platforms | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: iqtlabs/gamutrf:${{ steps.change_version.outputs.VERSION }} | |
if: github.repository == 'iqtlabs/gamutrf' && github.event_name == 'push' | |
- name: Build and push gamutrf-torchsig | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
file: docker/Dockerfile.torchsig | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: iqtlabs/gamutrf-torchsig:${{ steps.change_version.outputs.VERSION }} | |
if: github.repository == 'iqtlabs/gamutrf' && github.event_name == 'push' |