Update Dockerfile Bitcoind 26.0 #149
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
name: nostr-rs-relay | |
# Controls when the action will run. | |
on: | |
pull_request: | |
branches: #[ master ] | |
- '*' # matches every branch that doesn't contain a '/' | |
- '*/*' # matches every branch containing a single '/' | |
- '**' # matches every branch | |
- 'master' # includes master | |
- 'main' # includes main | |
# Triggers the workflow on push or pull request events but only for the master branch | |
push: | |
#paths: | |
# - '.github/workflows/automate.yml' | |
#schedule: | |
# - cron: "*/5 * * * *" | |
branches: #[ master ] | |
- '*' # matches every branch that doesn't contain a '/' | |
- '*/*' # matches every branch containing a single '/' | |
- '**' # matches every branch | |
- 'master' # includes master | |
- 'main' # includes main | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
github-workspace: | |
name: github-workspace | |
strategy: | |
matrix: | |
os: [ubuntu-20.04, ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: styfle/cancel-workflow-action@0.11.0 | |
if: ${{ !env.ACT }} | |
with: | |
access_token: ${{ github.token }} | |
- name: Print github workspace | |
run: | | |
printenv | |
ubuntu-build_and_test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: styfle/cancel-workflow-action@0.11.0 | |
if: ${{ !env.ACT }} | |
with: | |
access_token: ${{ github.token }} | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4.5.0 | |
- uses: syphar/restore-virtualenv@v1 | |
id: cache-virtualenv | |
- uses: syphar/restore-pip-download-cache@v1 | |
if: steps.cache-virtualenv.outputs.cache-hit != 'true' | |
- run: pip install -r requirements.txt | |
if: steps.cache-virtualenv.outputs.cache-hit != 'true' | |
- name: make venv && . .venv/bin/activate | |
run: | | |
make venv && . .venv/bin/activate | |
make test-venv | |
- name: make initialize init | |
run: | | |
sudo apt install gawk | |
make initialize init | |
- name: make submodules nostr-rs-relay-build | |
run: | | |
make submodules nostr-rs-relay-build |