Skip to content

Commit

Permalink
use same docker image for devcontainer and CI
Browse files Browse the repository at this point in the history
  • Loading branch information
OmarTawfik committed Oct 31, 2023
1 parent 7bb650b commit 3d11ec7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/_jobs_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
run:
runs-on: "ubuntu-22.04" # _SLANG_DEV_CONTAINER_BASE_IMAGE_ (keep in sync)
runs-on: "mcr.microsoft.com/devcontainers/base:ubuntu-22.04" # _SLANG_DEV_CONTAINER_BASE_IMAGE_ (keep in sync)

steps:
#
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_jobs_github_pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
run:
runs-on: "ubuntu-22.04" # _SLANG_DEV_CONTAINER_BASE_IMAGE_ (keep in sync)
runs-on: "mcr.microsoft.com/devcontainers/base:ubuntu-22.04" # _SLANG_DEV_CONTAINER_BASE_IMAGE_ (keep in sync)

environment:
name: "github-pages"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/_jobs_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
changesets:
runs-on: "ubuntu-22.04" # _SLANG_DEV_CONTAINER_BASE_IMAGE_ (keep in sync)
runs-on: "mcr.microsoft.com/devcontainers/base:ubuntu-22.04" # _SLANG_DEV_CONTAINER_BASE_IMAGE_ (keep in sync)

steps:
#
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:

assets:
needs: "changesets"
runs-on: "ubuntu-22.04" # _SLANG_DEV_CONTAINER_BASE_IMAGE_ (keep in sync)
runs-on: "mcr.microsoft.com/devcontainers/base:ubuntu-22.04" # _SLANG_DEV_CONTAINER_BASE_IMAGE_ (keep in sync)

if: "${{ needs.changesets.outputs.hasChangesets == 'false' }}"

Expand Down

0 comments on commit 3d11ec7

Please sign in to comment.