Skip to content

.github/workflows/docker.yml #2

.github/workflows/docker.yml

.github/workflows/docker.yml #2

Workflow file for this run

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