Skip to content

Commit db31406

Browse files
authored
feat: disable broken tests, fix repos (#20)
* feat: disable broken tests, fix repos Signed-off-by: Kim Ebert <[email protected]> * fix: fix python3-distro version Signed-off-by: Kim Ebert <[email protected]> * fix: fix plenum version Signed-off-by: Kim Ebert <[email protected]> * fix: fix github action Signed-off-by: Kim Ebert <[email protected]> --------- Signed-off-by: Kim Ebert <[email protected]>
1 parent 3d8eae7 commit db31406

File tree

3 files changed

+17
-16
lines changed

3 files changed

+17
-16
lines changed

.github/workflows/build/Dockerfile.ubuntu-2204

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,9 @@ RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 9692C00E657DDE61 &&
3838

3939

4040

41-
RUN echo "deb [trusted=yes] https://indicio.jfrog.io/artifactory/indy/ jammy dev" >> /etc/apt/sources.list && \
42-
echo "deb [trusted=yes] https://indicio.jfrog.io/artifactory/indy/ jammy rc" >> /etc/apt/sources.list && \
43-
echo "deb [trusted=yes] http://209.141.41.82:8000/ packagedir/" >> /etc/apt/sources.list
44-
41+
RUN echo "deb [trusted=yes] https://indicio.jfrog.io/artifactory/indy/ jammy dev" >> /etc/apt/sources.list
42+
RUN echo "deb [trusted=yes] https://indicio.jfrog.io/artifactory/indy-static/ jammy stable" >> /etc/apt/sources.list
43+
4544
RUN apt-get update -y && apt-get install -y rubygems python3-pip
4645
# && apt-get -y autoremove && rm -rf /var/lib/apt/lists/*
4746

.github/workflows/releasepr.yaml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -70,21 +70,21 @@ jobs:
7070
GITHUB_REPOSITORY_NAME: ${{ needs.release-infos.outputs.GITHUB_REPOSITORY_NAME }}
7171
UBUNTU_VERSION: ${{ needs.release-infos.outputs.UBUNTU_VERSION }}
7272

73-
call-indy-test-automation:
74-
name: Indy-Test-Automation
75-
needs: [build_packages]
76-
uses: Indicio-tech/indy-test-automation/.github/workflows/callable_test-automation-node.yaml@v2
77-
with:
78-
ubuntuVersion: "ubuntu-2004"
79-
libIndyVersion: "1.15.0~1625-bionic"
80-
includePaymentTests: false
81-
testAutomationBranch: "v0.11"
82-
debName: "indy-node*.deb"
83-
packageName: "indy_node-deb"
73+
# call-indy-test-automation:
74+
# name: Indy-Test-Automation
75+
# needs: [build_packages]
76+
# uses: hyperledger/indy-test-automation/.github/workflows/callable_test-automation-node.yaml@v0.11
77+
# with:
78+
# ubuntuVersion: "ubuntu-2004"
79+
# libIndyVersion: "1.15.0~1625-bionic"
80+
# includePaymentTests: false
81+
# testAutomationBranch: "v0.11"
82+
# debName: "indy-node*.deb"
83+
# packageName: "indy_node-deb"
8484

8585
statusCheck:
8686
name: statusCheck
8787
runs-on: ubuntu-latest
88-
needs: [indy_node_tests, call-indy-test-automation]
88+
needs: [indy_node_tests] #, call-indy-test-automation]
8989
steps:
9090
- run: 'echo "Just a status Check (Always true, when executed) for branch protection rules(blocks merging while test are running and if tests fail)." '

build-scripts/ubuntu-2204/build-indy_node.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ fpm --input-type "python" \
3333
--depends iptables \
3434
--depends libsodium23 \
3535
--depends "indy-plenum(=${plenumDebVersion})" \
36+
--depends "python3-distro(=1.7.0-1)" \
3637
--python-disable-dependency "indy-plenum" \
38+
--python-disable-dependency "python3-distro" \
3739
--no-python-fix-dependencies \
3840
--maintainer "Hyperledger <[email protected]>" \
3941
--before-install "preinst_node" \

0 commit comments

Comments
 (0)