-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add workflow for detecting a drift in the generated Dagger files
- Loading branch information
Showing
3 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: "Check for drift in Dagger files" | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
check-dagger-drift: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | ||
|
||
- name: Determine Dagger version | ||
id: dagger_version | ||
run: | | ||
sudo apt-get install -y yq | ||
cat .github/workflows/acceptance-tests.yml| yq -r '.jobs.build.steps[] | select(.id == "dagger") | .with.version' > .version | ||
echo "version=$(<.version)" > $GITHUB_OUTPUT | ||
rm -rf .version | ||
- uses: actions/cache@v4 | ||
id: cache_daggercli | ||
with: | ||
path: bin | ||
key: daggercli-download-${{ steps.dagger_version.outputs.version }} | ||
|
||
- name: Install Dagger CLI | ||
if: steps.cache_daggercli.outputs.cache-hit != 'true' | ||
shell: bash | ||
run: | | ||
curl -L https://dl.dagger.io/dagger/install.sh | DAGGER_VERSION=${{ steps.dagger_version.outputs.version }} sh | ||
- name: Check drift | ||
run: | | ||
set -e | ||
make dagger-develop | ||
test -z "$(git status --porcelain)" && "No drift detected" || "Drift detected. Run `make dagger-develop` and commit the changed files" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters