diff --git a/.github/workflows/automotive_docker-image.yml b/.github/workflows/automotive_docker-image.yml new file mode 100644 index 0000000..883bdb0 --- /dev/null +++ b/.github/workflows/automotive_docker-image.yml @@ -0,0 +1,22 @@ +name: Docker Image CI - Automotive + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Build the core image + run: docker build . --file Dockerfiles/SDR/corebuild.docker --tag corebuild:latest + + - name: Build the Automotive Docker image + run: docker build . --file Dockerfiles/automotive.docker --tag rfswift_automotive:$(date +%s) diff --git a/.github/workflows/bluetooth_docker-image.yml b/.github/workflows/bluetooth_docker-image.yml index 85c209e..9708aea 100644 --- a/.github/workflows/bluetooth_docker-image.yml +++ b/.github/workflows/bluetooth_docker-image.yml @@ -18,5 +18,5 @@ jobs: - name: Build the core image run: docker build . --file Dockerfiles/SDR/corebuild.docker --tag corebuild:latest - - name: Build the full Docker image + - name: Build the Bluetooth Docker image run: docker build . --file Dockerfiles/bluetooth.docker --tag rfswift_bluetooth:$(date +%s) diff --git a/.github/workflows/reversing_docker-image.yml b/.github/workflows/reversing_docker-image.yml new file mode 100644 index 0000000..74a1841 --- /dev/null +++ b/.github/workflows/reversing_docker-image.yml @@ -0,0 +1,22 @@ +name: Docker Image CI - Reversing + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Build the core image + run: docker build . --file Dockerfiles/SDR/corebuild.docker --tag corebuild:latest + + - name: Build the Reversing Docker image + run: docker build . --file Dockerfiles/reversing.docker --tag rfswift_reversing:$(date +%s) diff --git a/.github/workflows/rfid_docker-image.yml b/.github/workflows/rfid_docker-image.yml index 093174e..7e319e7 100644 --- a/.github/workflows/rfid_docker-image.yml +++ b/.github/workflows/rfid_docker-image.yml @@ -18,5 +18,5 @@ jobs: - name: Build the core image run: docker build . --file Dockerfiles/SDR/corebuild.docker --tag corebuild:latest - - name: Build the full Docker image + - name: Build the RFID Docker image run: docker build . --file Dockerfiles/rfid.docker --tag rfswift_rfid:$(date +%s) diff --git a/.github/workflows/wifi_docker-image.yml b/.github/workflows/wifi_docker-image.yml index 4260e97..dd58637 100644 --- a/.github/workflows/wifi_docker-image.yml +++ b/.github/workflows/wifi_docker-image.yml @@ -18,5 +18,5 @@ jobs: - name: Build the core image run: docker build . --file Dockerfiles/SDR/corebuild.docker --tag corebuild:latest - - name: Build the full Docker image + - name: Build the Wi-Fi Docker image run: docker build . --file Dockerfiles/wifi.docker --tag rfswift_wifi:$(date +%s)