Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- id: devstack-action
uses: actions/devstack-action@v1
uses: EmilienM/devstack-action@v1
- name: Upload logs artifacts on failure
if: failure()
uses: actions/upload-artifact@v2
Expand Down
10 changes: 6 additions & 4 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ runs:
using: "composite"
steps:
- name: Install python pip
run: |
python -m pip install --upgrade pip
run: python -m pip install --upgrade pip
shell: bash
# https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu2004-README.md#mysql
- name: Start MySQL
run: |
sudo systemctl start mysql.service
run: sudo systemctl start mysql.service
shell: bash
- name: Checkout Devstack
uses: actions/checkout@v2
with:
Expand All @@ -35,6 +35,8 @@ runs:
LOGFILE=${{ inputs.log_dir }}/devstack.log
EOF
working-directory: ./devstack
shell: bash
- name: Run devstack
run: ./stack.sh
working-directory: ./devstack
shell: bash