-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #376 from skalenetwork/merge-beta
1.3.3 (add checksum to release)
- Loading branch information
Showing
4 changed files
with
124 additions
and
17 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Get linked issues | ||
on: | ||
pull_request: | ||
types: [ edited, synchronize, opened, reopened ] | ||
|
||
jobs: | ||
check-linked-issues: | ||
name: Check if pull request has linked issues | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Get issues | ||
id: get-issues | ||
uses: mondeja/pr-linked-issues-action@v2 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | ||
- name: PR has not linked issues | ||
if: join(steps.get-issues.outputs.issues) == '' | ||
run: | ||
exit 1 |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
FROM ubuntu:20.04 | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
RUN apt-get update --fix-missing && apt-get install -y software-properties-common | ||
RUN add-apt-repository ppa:deadsnakes/ppa | ||
RUN apt-get install -y \ | ||
git \ | ||
python3.9 \ | ||
libpython3.9-dev \ | ||
python3.9-venv \ | ||
python3.9-distutils \ | ||
python3.9-dev \ | ||
build-essential \ | ||
zlib1g-dev \ | ||
libssl-dev \ | ||
libffi-dev \ | ||
swig | ||
|
||
RUN mkdir /app | ||
WORKDIR /app | ||
|
||
COPY . . | ||
|
||
ENV PATH=/app/buildvenv/bin:$PATH | ||
RUN python3.9 -m venv /app/buildvenv && \ | ||
pip install --upgrade pip && \ | ||
pip install wheel setuptools==63.2.0 && \ | ||
pip install -e '.[dev]' |