GRE support naming refactoring #123
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: | |
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 -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: build-image-builder | |
runs-on: builder | |
container: | |
image: yanetplatform/builder | |
steps: | |
- uses: actions/checkout@v3 | |
- 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: build-image-builder | |
runs-on: ubuntu-latest | |
container: | |
image: yanetplatform/builder | |
steps: | |
- uses: actions/checkout@v3 | |
- 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 | |
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: 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.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 |