Skip to content

Commit b9a9444

Browse files
Merge pull request #413 from skalenetwork/develop
New beta
2 parents aaac5d2 + c9928fc commit b9a9444

File tree

135 files changed

+12051
-9442
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

135 files changed

+12051
-9442
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: clang-format Check
2+
on: [push]
3+
jobs:
4+
formatting-check:
5+
name: Formatting Check
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v2
9+
- uses: DoozyX/[email protected]
10+
with:
11+
source: '.'
12+
exclude: './CMakeFiles ./cmake ./deps ./build ./cppzmq ./gmp-build ./intel-sgx-ssl ./jsonrpc ./leveldb ./libBLS ./libzmq ./linux-sgx-driver ./rapidjson ./sgx-gmp ./sgx-sdk-build ./sgx-software-enable ./tgmp-build ./third_party/* ./newer_lcov'
13+
extensions: 'h,hpp,hxx,cpp,cxx,cc,ipp'
14+
clangFormatVersion: 14

.github/workflows/dockerimage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
jobs:
66
build:
7-
runs-on: ubuntu-18.04
7+
runs-on: ubuntu-20.04
88
env:
99
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
1010
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}

.github/workflows/dockerimagebase.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- build_base*
77
jobs:
88
build:
9-
runs-on: ubuntu-18.04
9+
runs-on: ubuntu-20.04
1010
env:
1111
ACTIONS_ALLOW_UNSECURE_COMMMANDS: true
1212
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}

.github/workflows/dockerimageintelsubmission.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
jobs:
66
build:
7-
runs-on: ubuntu-18.04
7+
runs-on: ubuntu-20.04
88
env:
99
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
1010
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}

.github/workflows/dockerimagerelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- stable
77
jobs:
88
build:
9-
runs-on: ubuntu-18.04
9+
runs-on: ubuntu-20.04
1010
env:
1111
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
1212
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}

.github/workflows/dockerimagesim.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
jobs:
66
build:
7-
runs-on: ubuntu-18.04
7+
runs-on: ubuntu-20.04
88
env:
99
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
1010
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
@@ -21,7 +21,7 @@ jobs:
2121
- name: Build and publish container for testing
2222
run: python3 scripts/docker_build.py DockerfileSimulation sgxwallet_sim ${GITHUB_SHA}
2323
- name: test
24-
run: python3 scripts/docker_test.py DockerfileSimulation sgxwallet_sim
24+
run: python3 scripts/docker_test.py DockerfileSimulation sgxwallet_sim ${GITHUB_SHA}
2525
- name: build and deploy docker image
2626
if: |
2727
contains(github.ref, 'develop') || contains(github.ref, 'beta') ||

.github/workflows/issue_check.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Get linked issues
2+
on:
3+
pull_request:
4+
types: [ edited, synchronize, opened, reopened ]
5+
6+
jobs:
7+
check-linked-issues:
8+
name: Check if pull request has linked issues
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Get issues
12+
id: get-issues
13+
uses: mondeja/pr-linked-issues-action@v2
14+
env:
15+
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
16+
- name: PR has not linked issues
17+
if: join(steps.get-issues.outputs.issues) == ''
18+
run:
19+
exit 1

0 commit comments

Comments
 (0)