forked from scsibug/nostr-rs-relay
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (36 loc) · 1.07 KB
/
docker.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: docker
on:
push:
tags:
- '**[0-9]+.[0-9]+.[0-9]+*'
pull_request:
branches:
- '*'
- '*/*'
- '**'
- 'master'
- 'main'
env:
GIT_DISCOVERY_ACROSS_FILESYSTEM: 1
jobs:
build:
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
tag: ["latest", "slim-bullseye"]
runs-on: ${{ matrix.os }}
container: rust:${{ matrix.tag }}
steps:
- run: apt-get update && apt-get install autoconf build-essential curl cmake jq libexpat1-dev libcurl4-openssl-dev libssl-dev libtool lsb-release git make nodejs npm pkg-config python3 python-is-python3 sudo tcl zlib1g-dev -y
- run: printenv
- run: cargo search nostr --limit 100
- name: checkout@v3 fetch-depth submodules set-safe-dir true
uses: actions/checkout@v3
with:
fetch-depth: '0'
submodules: 'true'
set-safe-directory: 'true'
- run: git config --global --add safe.directory /__w/playground-nostr-rs-relay/playground-nostr-rs-relay
- run: make
- run: make build