Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: add version tests #153

Merged
merged 2 commits into from
Oct 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
95 changes: 95 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
name: Test

on:
push:
branches: ["main"]
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
# Enable manual trigger for easy debugging
workflow_dispatch:

permissions:
contents: read
pull-requests: write

jobs:
version:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4

- name: "Use latest"
id: use-latest
uses: ./
with:
version: latest
verb: core
args: version
- name: "Use latest (check)"
run: |
target='${{ steps.use-latest.outputs.output }}'
if [[ "$target" =~ v[0-9]*\.[0-9]*\.[0-9]* ]]; then
echo "matches"
exit 0
else
echo "does not match"
exit 1
fi

- name: "Use v0.13.5"
id: use-v0-13-5
uses: ./
with:
version: v0.13.5
verb: core
args: version
- name: "Use v0.13.5 (check)"
run: |
target='${{ steps.use-v0-13-5.outputs.output }}'
if [[ "$target" =~ v0\.13\.5 ]]; then
echo "matches"
exit 0
else
echo "does not match"
exit 1
fi

- name: "Use commit"
id: use-commit
uses: ./
with:
commit: 540b4d1490f253054140f9249e823adf111e1c06
verb: core
args: version
- name: "Use commit (check)"
run: |
target='${{ steps.use-commit.outputs.output }}'
if [[ "$target" =~ v0\.13\.6-[0-9]+-540b4d1490f2 ]]; then
echo "matches"
exit 0
else
echo "does not match"
exit 1
fi

- name: "Use head"
id: use-head
uses: ./
with:
commit: head
verb: core
args: version
- name: "Use head (check)"
run: |
target='${{ steps.use-commit.outputs.output }}'
if [[ "$target" =~ v[0-9]*\.[0-9]*\.[0-9]*-[0-9]+-[0-9a-f]{12} ]]; then
echo "matches"
exit 0
else
echo "does not match"
exit 1
fi
12 changes: 10 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ inputs:
description: "Whether to stop the Dagger Engine after this run"
required: false
default: "true"
outputs:
output:
description: "Job output"
value: ${{ steps.exec.outputs.stdout }}
runs:
using: "composite"
steps:
Expand Down Expand Up @@ -65,17 +69,21 @@ runs:
curl -fsS https://dl.dagger.io/dagger/install.sh \
| BIN_DIR=${prefix_dir}/bin DAGGER_VERSION="$VERSION" DAGGER_COMMIT="$COMMIT" sh

- shell: bash
- id: exec
shell: bash
env:
INPUT_MODULE: ${{ inputs.module }}
run: |
tmpout=$(mktemp)
cd ${{ inputs.workdir }} && { \
DAGGER_CLOUD_TOKEN=${{ inputs.cloud-token }} \
dagger \
${{ inputs.dagger-flags }} \
${{ inputs.verb }} \
${INPUT_MODULE:+-m $INPUT_MODULE} \
${{ inputs.args }}; }
${{ inputs.args }}; } | tee "${tmpout}"

(echo -n "stdout=" && cat "${tmpout}") >> "$GITHUB_OUTPUT"

- if: inputs.engine-stop == 'true'
shell: bash
Expand Down