Skip to content

Commit

Permalink
.github/workflows/docker.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
RandyMcMillan committed Jun 27, 2024
1 parent cc6b790 commit bdb8f1b
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: gnostr-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: make
- run: make build

0 comments on commit bdb8f1b

Please sign in to comment.