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

Add workflow dispatch #748

Merged
merged 1 commit into from
Jun 13, 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
12 changes: 8 additions & 4 deletions .github/workflows/buildcheck.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Standard Build Check

on: [push, pull_request]
on:
push:
pull_request:
workflow_dispatch:

jobs:
buildtest:
Expand All @@ -16,9 +19,10 @@ jobs:
run: |
# Needed for using exact python version, which is
# required in `Pipfile`.
# Make sure it is aligned with vss-tools/Pipfile
curl https://pyenv.run | bash
export PATH="$HOME/.pyenv/bin:$PATH"
pyenv install 3.8.12
pyenv install 3.10.6

- name: Install vss-tools dependencies
run: |
Expand All @@ -45,10 +49,10 @@ jobs:

- name: Test that ddsidl is correct
run: |
pipenv install cyclonedds
# Ignore vss-tools Pipfile for this use-case
pipenv install --ignore-pipfile cyclonedds
pipenv run idlc *.idl
env:
PIPENV_PIPFILE: ./vss-tools/Pipfile
PIPENV_VENV_IN_PROJECT: 1

- name: Test optional targets. NOTE - always succeeds
Expand Down
2 changes: 1 addition & 1 deletion vss-tools
Submodule vss-tools updated 105 files