Skip to content

Commit

Permalink
fix oct
Browse files Browse the repository at this point in the history
  • Loading branch information
edcdavid committed Apr 26, 2024
1 parent 38f47b8 commit b921df4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/pre-main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
ref: ${{ github.sha }}

- name: Install yaml dependency
run: pip3 install --require-hashes -r .github/workflows/frozen-requirements-pre-main.txt
run: pip3 install --require-hashes -r ${GITHUB_WORKSPACE}/cnf-certification-test/.github/workflows/frozen-requirements-pre-main.txt
env:
SHELL: /bin/bash

Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
ref: ${{ github.sha }}

- name: Install yaml dependency
run: pip3 install --require-hashes -r .github/workflows/frozen-requirements-pre-main.txt
run: pip3 install --require-hashes -r ${GITHUB_WORKSPACE}/cnf-certification-test/.github/workflows/frozen-requirements-pre-main.txt
env:
SHELL: /bin/bash

Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:
ref: ${{ github.sha }}

- name: Install yaml dependency
run: pip3 install --require-hashes -r .github/workflows/frozen-requirements-pre-main.txt
run: pip3 install --require-hashes -r ${GITHUB_WORKSPACE}/cnf-certification-test/.github/workflows/frozen-requirements-pre-main.txt
env:
SHELL: /bin/bash

Expand Down Expand Up @@ -236,7 +236,7 @@ jobs:
with:
timeout_minutes: 90
max_attempts: 3
command: cd ${GITHUB_WORKSPACE}/cnf-certification-test-partner && make bootstrap-cluster && make bootstrap-docker-ubuntu-local && make bootstrap-python-ubuntu-local && pip3 install pyyaml
command: cd ${GITHUB_WORKSPACE}/cnf-certification-test-partner && make bootstrap-cluster && make bootstrap-docker-ubuntu-local && make bootstrap-python-ubuntu-local && pip3 install --require-hashes -r ${GITHUB_WORKSPACE}/cnf-certification-test/.github/workflows/frozen-requirements-pre-main.txt

# Restart docker using /mnt/docker-storage (sdb) instead of /var/lib/docker (sda).
# This step needs to be done right after the partner repo's bootstrap scripts, as they
Expand Down Expand Up @@ -328,7 +328,7 @@ jobs:
with:
timeout_minutes: 90
max_attempts: 3
command: cd ${GITHUB_WORKSPACE}/cnf-certification-test-partner && make bootstrap-cluster && make bootstrap-docker-ubuntu-local && make bootstrap-python-ubuntu-local && pip3 install pyyaml
command: cd ${GITHUB_WORKSPACE}/cnf-certification-test-partner && make bootstrap-cluster && make bootstrap-docker-ubuntu-local && make bootstrap-python-ubuntu-local && pip3 install --require-hashes -r ${GITHUB_WORKSPACE}/cnf-certification-test/.github/workflows/frozen-requirements-pre-main.txt

# Restart docker using /mnt/docker-storage (sdb) instead of /var/lib/docker (sda).
# This step needs to be done right after the partner repo's bootstrap scripts, as they
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ RUN \

# Using latest is prone to errors.
# hadolint ignore=DL3007
FROM quay.io/testnetworkfunction/oct:latest@sha256:3ee1cdc94d7ad4820324bf7cff359b5d4da3512c5648ebec6db1e626a700560f AS db
FROM quay.io/testnetworkfunction/oct:latest AS db

# Copy the state into a new flattened image to reduce size.
# TODO run as non-root
Expand Down

0 comments on commit b921df4

Please sign in to comment.