Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "[#45] Implement the das-node tests pipeline" #51

Merged
merged 1 commit into from
Oct 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,7 @@ on:
required: true

jobs:
code-quality:
uses: ./.github/workflows/run-tests.yml
secrets: inherit

tag:
needs: code-quality
uses: singnet/das/.github/workflows/run-semver.yml@master
with:
version: ${{ github.event.inputs.version }}
Expand All @@ -37,6 +32,7 @@ jobs:

- name: Update version
run: sed -i "s/version=.*/version='${{ github.event.inputs.version }}',/" pyproject.toml


- name: Build (Docker Image)
run: ./scripts/docker_image_build.sh
Expand Down
67 changes: 0 additions & 67 deletions .github/workflows/run-tests.yml

This file was deleted.

2 changes: 1 addition & 1 deletion scripts/_build_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ find ${TMP_DEST_DIR} -type f -name "*.whl" \
[ $? -ne 0 ] && exit 1

# Change ownership
chown -R ${_USER}:${_USER} ${DEST_DIR}
chown -R ${_USER}:${_GROUP} ${DEST_DIR}
[ $? -ne 0 ] && exit 1

# Clean up
Expand Down
4 changes: 0 additions & 4 deletions scripts/bazel_test.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
#!/bin/bash

cd src

bazel test --noenable_bzlmod --cache_test_results=no //...

cd -