Browse Source

Update qmk_cli container references (#20154)

pull/20156/head
Joel Challis 1 year ago
committed by GitHub
parent
commit
c7f58145fb
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
14 changed files with 13 additions and 19 deletions
  1. +1
    -1
      .github/workflows/api.yml
  2. +1
    -1
      .github/workflows/ci_builds.yml
  3. +1
    -1
      .github/workflows/cli.yml
  4. +1
    -1
      .github/workflows/docs.yml
  5. +1
    -1
      .github/workflows/format.yml
  6. +1
    -1
      .github/workflows/format_push.yml
  7. +1
    -1
      .github/workflows/lint.yml
  8. +1
    -1
      .github/workflows/regen.yml
  9. +1
    -1
      .github/workflows/regen_push.yml
  10. +1
    -1
      .github/workflows/unit_test.yml
  11. +0
    -6
      Dockerfile
  12. +1
    -1
      docs/newbs_building_firmware_workflow.md
  13. +1
    -1
      util/docker_build.sh
  14. +1
    -1
      util/docker_cmd.sh

+ 1
- 1
.github/workflows/api.yml View File

@ -19,7 +19,7 @@ on:
jobs:
api_data:
runs-on: ubuntu-latest
container: qmkfm/qmk_cli
container: ghcr.io/qmk/qmk_cli
# protect against those who work in their fork on 'important' branches
if: github.repository == 'qmk/qmk_firmware'


+ 1
- 1
.github/workflows/ci_builds.yml View File

@ -22,7 +22,7 @@ jobs:
keymap: [default, via]
keyboard_folder: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z]
container: qmkfm/qmk_cli
container: ghcr.io/qmk/qmk_cli
steps:
- name: Disable safe.directory check


+ 1
- 1
.github/workflows/cli.yml View File

@ -18,7 +18,7 @@ jobs:
test:
runs-on: ubuntu-latest
container: qmkfm/qmk_cli
container: ghcr.io/qmk/qmk_cli
steps:
- name: Disable safe.directory check


+ 1
- 1
.github/workflows/docs.yml View File

@ -17,7 +17,7 @@ on:
jobs:
generate:
runs-on: ubuntu-latest
container: qmkfm/qmk_cli
container: ghcr.io/qmk/qmk_cli
# protect against those who develop with their fork on master
if: github.repository == 'qmk/qmk_firmware'


+ 1
- 1
.github/workflows/format.yml View File

@ -19,7 +19,7 @@ jobs:
lint:
runs-on: ubuntu-latest
container: qmkfm/qmk_cli
container: ghcr.io/qmk/qmk_cli
steps:
- name: Disable safe.directory check


+ 1
- 1
.github/workflows/format_push.yml View File

@ -13,7 +13,7 @@ jobs:
lint:
runs-on: ubuntu-latest
container: qmkfm/qmk_cli
container: ghcr.io/qmk/qmk_cli
steps:
- name: Disable safe.directory check


+ 1
- 1
.github/workflows/lint.yml View File

@ -12,7 +12,7 @@ jobs:
lint:
runs-on: ubuntu-latest
container: qmkfm/qmk_cli
container: ghcr.io/qmk/qmk_cli
steps:
- name: Disable safe.directory check


+ 1
- 1
.github/workflows/regen.yml View File

@ -13,7 +13,7 @@ jobs:
regen:
runs-on: ubuntu-latest
container: qmkfm/qmk_cli
container: ghcr.io/qmk/qmk_cli
steps:
- name: Disable safe.directory check


+ 1
- 1
.github/workflows/regen_push.yml View File

@ -13,7 +13,7 @@ jobs:
regen:
runs-on: ubuntu-latest
container: qmkfm/qmk_cli
container: ghcr.io/qmk/qmk_cli
steps:
- name: Disable safe.directory check


+ 1
- 1
.github/workflows/unit_test.yml View File

@ -23,7 +23,7 @@ jobs:
test:
runs-on: ubuntu-latest
container: qmkfm/qmk_cli
container: ghcr.io/qmk/qmk_cli
steps:
- uses: actions/checkout@v3


+ 0
- 6
Dockerfile View File

@ -1,6 +0,0 @@
FROM qmkfm/qmk_cli
VOLUME /qmk_firmware
WORKDIR /qmk_firmware
CMD qmk compile -kb all -km default

+ 1
- 1
docs/newbs_building_firmware_workflow.md View File

@ -95,7 +95,7 @@ on: [push, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
container: qmkfm/qmk_cli
container: ghcr.io/qmk/qmk_cli
strategy:
fail-fast: false
matrix:


+ 1
- 1
util/docker_build.sh View File

@ -81,5 +81,5 @@ fi
-e ALT_GET_KEYBOARDS=true \
-e SKIP_GIT="$SKIP_GIT" \
-e MAKEFLAGS="$MAKEFLAGS" \
qmkfm/qmk_cli \
ghcr.io/qmk/qmk_cli \
make "$keyboard${keymap:+:$keymap}${target:+:$target}"

+ 1
- 1
util/docker_cmd.sh View File

@ -55,5 +55,5 @@ fi
$uid_arg \
-w /qmk_firmware \
-v "$dir":/qmk_firmware \
qmkfm/qmk_cli \
ghcr.io/qmk/qmk_cli \
"$@"

Loading…
Cancel
Save