Fixes updated slow worker mixing up packets between interfaces #815
Workflow file for this run
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: | |
formatting-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run clang-format style check | |
uses: jidicula/clang-format-action@v4.11.0 | |
with: | |
clang-format-version: '10' | |
exclude-regex: .*\.proto | |
build-unittest: | |
needs: formatting-check | |
runs-on: ubuntu-latest | |
container: | |
image: yanetplatform/builder-lite | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- run: | | |
meson setup -Dtarget=unittest build_unittest | |
meson compile -C build_unittest | |
- name: bug https://github.com/actions/upload-artifact/issues/38 | |
run: tar -cvzf build_unittest.tar.gz build_unittest | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: build_unittest | |
path: build_unittest.tar.gz | |
retention-days: 1 | |
build-autotest: | |
needs: formatting-check | |
runs-on: ubuntu-latest | |
container: | |
image: yanetplatform/builder-lite | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- run: | | |
meson setup --prefix=/target_autotest -Dtarget=autotest -Dstrip=true 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 -cvzf target_autotest.tar.gz ./ | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: target_autotest | |
path: target_autotest.tar.gz | |
retention-days: 1 | |
build: | |
needs: formatting-check | |
runs-on: ubuntu-latest | |
container: | |
image: yanetplatform/builder-lite | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- run: | | |
meson setup --prefix=/target -Dstrip=true build | |
meson compile -C build | |
- run: meson install -C build | |
build-ubuntu1804: | |
name: build (Ubuntu 18.04) | |
needs: formatting-check | |
runs-on: ubuntu-latest | |
container: | |
image: yanetplatform/builder_ubuntu18.04-lite | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
submodules: recursive | |
- run: | | |
meson setup --prefix=/target -Dstrip=true build | |
meson compile -C build | |
- run: meson install -C build | |
unittest: | |
needs: build-unittest | |
runs-on: ubuntu-latest | |
container: | |
image: yanetplatform/builder-lite | |
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.gz | |
- run: meson test --no-rebuild -C build_unittest | |
autotest-001_one_port: | |
name: 001_one_port | |
needs: build-autotest | |
runs-on: ubuntu-latest | |
container: | |
image: yanetplatform/builder-lite | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- 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.gz | |
- 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 |