mirror of
https://github.com/AbdBarho/stable-diffusion-webui-docker.git
synced 2025-10-27 08:14:26 -04:00
Update AUTOMATIC1111 (#37)
This commit is contained in:
6
.github/workflows/docker.yml
vendored
6
.github/workflows/docker.yml
vendored
@@ -6,19 +6,19 @@ on: [push]
|
||||
jobs:
|
||||
build_hlky:
|
||||
runs-on: ubuntu-latest
|
||||
name: Build hlky
|
||||
name: hlky
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- run: docker compose build --progress plain
|
||||
build_AUTOMATIC1111:
|
||||
runs-on: ubuntu-latest
|
||||
name: Build AUTOMATIC1111
|
||||
name: AUTOMATIC1111
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- run: cd AUTOMATIC1111 && docker compose build --progress plain
|
||||
build_lstein:
|
||||
runs-on: ubuntu-latest
|
||||
name: Build lstein
|
||||
name: lstein
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- run: cd lstein && docker compose build --progress plain
|
||||
|
||||
22
.github/workflows/executable.yml1
vendored
Normal file
22
.github/workflows/executable.yml1
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
name: Check executable
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
check:
|
||||
runs-on: ubuntu-latest
|
||||
name: Check all sh
|
||||
steps:
|
||||
- run: git config --global core.fileMode true
|
||||
- uses: actions/checkout@v3
|
||||
- shell: bash
|
||||
run: |
|
||||
shopt -s globstar;
|
||||
FAIL=0
|
||||
for file in **/*.sh; do
|
||||
if [ -f "${file}" ] && [ -r "${file}" ] && [ ! -x "${file}" ]; then
|
||||
echo "$file" is not executable;
|
||||
FAIL=1
|
||||
fi
|
||||
done
|
||||
exit ${FAIL}
|
||||
Reference in New Issue
Block a user