Skip to content

Commit

Permalink
Perform release testing on every push and only release with tags
Browse files Browse the repository at this point in the history
  • Loading branch information
hsanjuan committed Jun 26, 2023
1 parent 1c0dd12 commit d6b56b9
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 23 deletions.
50 changes: 44 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
name: Release Kubo plugin
name: Kubo plugin build, test, release

on:
push:
tags:
- "nopfs-kubo-plugin/v*"
env:
GO_VERSION: "1.19.10" # must be same as official ipfs builds

Expand Down Expand Up @@ -41,8 +37,49 @@ jobs:
with:
name: ${{ env.ARTIFACT_NAME }}
path: nopfs-kubo-plugin_*.tar.gz
release:

test-artifacts:
needs: build-artifacts
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- name: Set Kubo version
run: |
V=`cat nopfs-kubo-plugin/go.mod | grep github.com/ipfs/kubo | grep -o 'v.*'`
echo "KUBO_VERSION=$V" >> "$GITHUB_ENV"
- name: Download artifact
id: download
uses: actions/download-artifact@v3
with:
name: nopfs-kubo-plugin_*_${{ env.OS }}_amd64.tar.gz
- name: Download unpack Kubo
run: |
wget https://dist.ipfs.tech/kubo/${{ env.KUBO_VERSION }}/kubo_${{ env.KUBO_VERSION }}_${{ env.GOHOSTOS }}-amd64.tar.gz
tar -xf kubo_${{ env.KUBO_VERSION }}_${{ env.GOHOSTOS }}-amd64.tar.gz
tar -xf nopfs-kubo-plugin_*
cp kubo/ipfs .
chmod +x ipfs
- name: Initialize IPFS and copy plugin
run: |
export IPFS_PATH=$(pwd)/ipfs-config
ipfs init
cp nopfs-kubo-plugin/nopfs-kubo-plugin ipfs-config/plugins/
- name: Check IPFS works with the plugin
run: ipfs version --all

release:
needs: test-artifacts
runs-on: ubuntu-latest
steps:
- name: Download artifacts
Expand All @@ -54,6 +91,7 @@ jobs:
echo "RELEASE=$RELEASE" >> "$GITHUB_ENV"
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/nopfs-kubo-plugin/v')
with:
files: nopfs-kubo-plugin_*.tar.gz/*
body: |
Expand Down
18 changes: 1 addition & 17 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,10 @@ on:

env:
GO_VERSION: "1.19.10"
PLUGIN_GO_VERSION: "1.19.10" # should match Kubo i guess

jobs:
tests:
name: "Tests"
name: "Compact denylist format test suite"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -54,18 +53,3 @@ jobs:
- name: Check
run: make check

plugin:
name: "Plugin"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 2

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.PLUGIN_GO_VERSION }}

- name: Plugin
run: make plugin

0 comments on commit d6b56b9

Please sign in to comment.