Merge pull request #2172 from gerhard/test-todoapp-with-latest-stable-dagger-release

ci: Deploy todoapp with dev dagger AND ALSO latest 0.2.x release
This commit is contained in:
Gerhard Lazu 2022-04-14 19:03:47 +01:00 committed by GitHub
commit b6c3f91d45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,41 +2,77 @@ name: todoapp
on: on:
push: push:
# Trigger for new commits to any branch ONLY IF
# they introduce changes in the following paths:
branches: branches:
- main
paths: paths:
- '.github/workflows/todoapp.yml' - '.github/workflows/todoapp.yml'
- 'pkg/universe.dagger.io/examples/todoapp/**' - 'pkg/universe.dagger.io/examples/todoapp/**'
env: env:
# This needs to be unique across all of Netlify # ⚠️ APP_NAME must be unique across all of Netlify ⚠️
# The deploy action will fail with a curl error if this is not the case
# TODO: make app name optional in the Netlify package and generate one by default
APP_NAME: todoapp-dagger-europa APP_NAME: todoapp-dagger-europa
# Set this to your Netlify team:
NETLIFY_TEAM: blocklayer NETLIFY_TEAM: blocklayer
# Configure NETLIFY_TOKEN as a GitHub Actions secret after you create one via:
# https://app.netlify.com/user/applications/personal # https://app.netlify.com/user/applications/personal
NETLIFY_TOKEN: ${{ secrets.NETLIFY_TOKEN }} NETLIFY_TOKEN: ${{ secrets.NETLIFY_TOKEN }}
# GitHub Actions friendly logs
DAGGER_LOG_FORMAT: plain DAGGER_LOG_FORMAT: plain
jobs: jobs:
dagger: dagger-dev:
name: "Deploy todoapp to Netlify" # a.k.a. Did we break anything?
name: Deploy with dagger dev
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: "Clone repository"
- name: Clone repository
uses: actions/checkout@v2 uses: actions/checkout@v2
# this repository has many commits,
# we only care about the last one
with: with:
fetch-depth: 0 fetch-depth: 0
# TODO: maybe use Dagger action post 0.2.0-beta.1 # We want to test with the current dev version of Dagger,
- name: "Setup Go" # so we need to install Go AND
# building a dev version of Dagger from source
- name: Setup Go
uses: actions/setup-go@v1 uses: actions/setup-go@v1
with: with:
go-version: 1.16 go-version: 1.16
- name: Build dev version of Dagger
- name: "Install dev Dagger"
run: | run: |
make dagger make dagger
- name: "Dagger" - name: dagger do deploy
run: | run: |
cd pkg/universe.dagger.io/examples/todoapp cd pkg/universe.dagger.io/examples/todoapp
${{ github.workspace }}/cmd/dagger/dagger do deploy ${{ github.workspace }}/cmd/dagger/dagger do deploy
dagger-0-2-x:
# a.k.a. Does it still work?
name: Deploy with dagger 0.2.x last release
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v2
# this repository has many commits,
# we only care about the last one
with:
fetch-depth: 0
- name: dagger do deploy
# https://github.com/dagger/dagger-for-github
uses: dagger/dagger-for-github@v2
with:
# Use latest Dagger 0.2.x release
version: 0.2
workdir: pkg/universe.dagger.io/examples/todoapp
# To pin external dependencies, use `project update github.com/[package-source]@v[n]`
cmds: |
project update
do deploy