Skip to content
Closed
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
52 changes: 0 additions & 52 deletions .github/workflows/hybrid_branch_deployments.yml

This file was deleted.

54 changes: 0 additions & 54 deletions .github/workflows/hybrid_deploy.yml

This file was deleted.

24 changes: 24 additions & 0 deletions .github/workflows/pex_cli_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Tests PEX CLI and action utils
on:
pull_request:
types: [opened, synchronize, reopened]

jobs:
test_pex_cli_on_ubuntu:
strategy:
matrix:
os: [ubuntu-22.04, ubuntu-24.04]
max-parallel: 2
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4

- name: Print dg version
uses: ./actions/utils/dg-cli
with:
command: "--version"

- name: Print dagster-cloud version
uses: ./actions/utils/dagster-cloud-cli
with:
command: "--version"
Comment on lines +8 to +24

Check warning

Code scanning / CodeQL

Workflow does not contain permissions Medium

Actions Job or Workflow does not set permissions
43 changes: 0 additions & 43 deletions .github/workflows/serverless_branch_custom_base_image.yml

This file was deleted.

42 changes: 0 additions & 42 deletions .github/workflows/serverless_branch_deployments.yml

This file was deleted.

44 changes: 0 additions & 44 deletions .github/workflows/serverless_custom_image.yml

This file was deleted.

43 changes: 0 additions & 43 deletions .github/workflows/serverless_deploy.yml

This file was deleted.

24 changes: 0 additions & 24 deletions .github/workflows/serverless_launch_job_definitions.yml

This file was deleted.

20 changes: 0 additions & 20 deletions .github/workflows/tests.yml

This file was deleted.

13 changes: 13 additions & 0 deletions actions/utils/dg-cli/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: "dg <command>"
description: "Run a dg cli command"
inputs:
command:
required: true
description: "The dg cli command to run"

runs:
using: "composite"
steps:
- id: dg-cli
run: $GITHUB_ACTION_PATH/../../../generated/gha/dagster-cloud.pex -m dagster_dg.cli:main ${{ inputs.command }}
shell: bash
Binary file modified generated/gha/dagster-cloud.pex
Binary file not shown.