yanet docker image: set version on build via ARGs, build binaries for… #73
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: Docker Image | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
build-image-builder: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build the yanetplatform/builder | |
run: | | |
cd docker | |
build-unittest: | |
needs: build-image-builder | |
runs-on: ubuntu-latest | |
container: | |
image: yanetplatform/builder | |
steps: | |
- uses: actions/checkout@v3 | |
- run: | | |
meson setup -Dtarget=unittest build_unittest | |
meson compile -C build_unittest | |
- name: bug https://github.com/actions/upload-artifact/issues/38 | |
run: tar -cvf build_unittest.tar build_unittest | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: build_unittest | |
path: build_unittest.tar | |
retention-days: 1 | |
build-autotest: | |
needs: build-image-builder | |
runs-on: builder | |
container: | |
image: yanetplatform/builder | |
steps: | |
- uses: actions/checkout@v3 | |
- run: | | |
meson setup --prefix=/target_autotest -Dtarget=autotest build_autotest | |
meson compile -C build_autotest | |
- run: meson install -C build_autotest | |
- name: bug https://github.com/actions/upload-artifact/issues/38 | |
run: tar -C /target_autotest -cvf target_autotest.tar ./ | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: target_autotest | |
path: target_autotest.tar | |
retention-days: 1 | |
build: | |
needs: build-image-builder | |
runs-on: ubuntu-latest | |
container: | |
image: yanetplatform/builder | |
steps: | |
- uses: actions/checkout@v3 | |
- run: | | |
meson setup --prefix=/target build | |
meson compile -C build | |
- run: meson install -C build | |
unittest: | |
needs: build-unittest | |
runs-on: ubuntu-latest | |
container: | |
image: yanetplatform/builder | |
steps: | |
- uses: actions/download-artifact@v3 | |
with: | |
name: build_unittest | |
- name: bug https://github.com/actions/upload-artifact/issues/38 | |
run: tar -xf build_unittest.tar | |
- run: meson test --no-rebuild -C build_unittest | |
autotest-001_one_port: | |
name: 001_one_port | |
needs: build-autotest | |
runs-on: autotest | |
container: | |
image: yanetplatform/builder | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/download-artifact@v3 | |
with: | |
name: target_autotest | |
- name: bug https://github.com/actions/upload-artifact/issues/38 | |
run: tar -C /usr -xf target_autotest.tar | |
- run: yanet-autotest-run.py autotest/units/001_one_port | |
deploy: | |
needs: | |
- unittest | |
- autotest-001_one_port | |
- build | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo deploy |