Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/testnet-dibbler' into launchpad_…
Browse files Browse the repository at this point in the history
…such_wow
  • Loading branch information
CjS77 committed Jul 19, 2022
2 parents e33b36a + dbdadcf commit 6b5946e
Show file tree
Hide file tree
Showing 105 changed files with 3,379 additions and 589 deletions.
1 change: 1 addition & 0 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Runs daily
---
name: Security audit
on:
schedule:
Expand Down
56 changes: 56 additions & 0 deletions .github/workflows/auto_labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
---
on:
workflow_run:
workflows:
- "Clippy check"
types:
- completed

jobs:
on-success:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- name: Download workflow artifact
uses: dawidd6/action-download-artifact@v2.11.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
workflow: CI
run_id: ${{ github.event.workflow_run.id }}

- name: Read PR number
id: pr_num
uses: juliangruber/read-file-action@v1.0.0
with:
path: ./pr_num.txt

- name: labeler
uses: actions-ecosystem/action-remove-labels@v1
with:
github_token: ${{ github.token }}
labels: clippy failed
number: ${{ steps.pr_num.output.content }}

on-failure:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'failure' }}
steps:
- name: Download workflow artifact
uses: dawidd6/action-download-artifact@v2.11.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
workflow: CI
run_id: ${{ github.event.workflow_run.id }}

- name: Read PR number
id: pr_num
uses: juliangruber/read-file-action@v1.0.0
with:
path: ./pr_num.txt

- name: labeler
uses: actions-ecosystem/action-add-labels@v1
with:
github_token: ${{ github.token }}
labels: clippy failed
number: ${{ steps.pr_num.output.content }}
8 changes: 5 additions & 3 deletions .github/workflows/base_node_binaries.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: Build Matrix of Binaries

on:
Expand All @@ -18,14 +19,15 @@ on:
env:
TBN_FILENAME: "tari_suite"
TBN_BUNDLEID_BASE: "com.tarilabs.pkg"
toolchain: nightly-2022-05-01

jobs:
builds:
name: Build and upload Binaries
strategy:
fail-fast: false
matrix:
os: [ubuntu-18.04, macos-10.15, windows-2019]
os: [ubuntu-18.04, macos-11, windows-2019]
# https://gcc.gnu.org/onlinedocs/gcc/x86-Options.html
target_cpu: ["x86-64"]
# https://github.com/zkcrypto/curve25519-dalek-ng/pull/14
Expand Down Expand Up @@ -63,7 +65,7 @@ jobs:
- name: Setup Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2022-05-01
toolchain: ${{ env.toolchain }}
components: rustfmt
override: true

Expand Down Expand Up @@ -111,7 +113,7 @@ jobs:
run: |
echo "SHARUN=shasum --algorithm 256" >> $GITHUB_ENV
echo "CC=gcc" >> $GITHUB_ENV
echo "TBN_EXT=" >> $GITHUB_ENV
echo "TBN_EXT=" >> $GITHUB_ENV
echo "LIB_PRE=lib" >> $GITHUB_ENV
echo "SHELL_EXT=.sh" >> $GITHUB_ENV
echo "PLATFORM_SPECIFIC_DIR=linux" >> $GITHUB_ENV
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
on:
push:
branches:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: Source Coverage
on:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/development-branch-npm-audits.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
on:
push:
branches:
Expand Down Expand Up @@ -41,4 +42,3 @@ jobs:
run: |
cd applications/tari_web_extension_example
npm audit
10 changes: 7 additions & 3 deletions .github/workflows/libwallet.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Build a new set of libraries when a new tag containing 'libwallet' is pushed
---
name: Build libwallet

on:
Expand All @@ -11,6 +12,9 @@ on:
- cron: "05 00 * * *"
workflow_dispatch:

env:
toolchain: nightly-2022-05-01

jobs:
android:
runs-on: ubuntu-latest
Expand All @@ -19,7 +23,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2022-05-01
toolchain: ${{ env.toolchain }}
override: true
- name: Install cross
run: |
Expand Down Expand Up @@ -66,13 +70,13 @@ jobs:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2022-05-01
toolchain: ${{ env.toolchain }}
target: aarch64-apple-ios
components: rustfmt
override: true
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2022-05-01
toolchain: ${{ env.toolchain }}
target: x86_64-apple-ios
components: rustfmt
override: true
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/long_running.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Runs weekly (saturday noon)
---
name: Long running integration tests
on:
schedule:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/non_critical_integration_tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Runs daily (2am)
---
name: Non critical integration tests
on:
schedule:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/pr_title.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: PR
on:
pull_request:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/rfc_deploy.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
on:
push:
branches:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/rfc_test.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
on:
push:
branches:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/tags-launchpad-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ jobs:
matrix:
image_name:
[
frontail,
monerod,
tor,
xmrig,
Expand Down
Loading

0 comments on commit 6b5946e

Please sign in to comment.