Skip to content

Commit

Permalink
Adds devcontainer builds to CI (#281)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheAngryByrd committed Oct 21, 2023
1 parent 07cee14 commit 7d43e90
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,17 @@ jobs:
env:
CONFIGURATION: ${{ matrix.configuration }}
CI: true

# Builds the project in a dev container
build-devcontainer:
runs-on: ubuntu-latest
steps:

- uses: actions/checkout@v3

- name: Build and run dev container task
uses: devcontainers/ci@v0.3
with:
runCmd: |
chmod +x ./build.sh
./build.sh
13 changes: 13 additions & 0 deletions Content/Console/.github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,16 @@ jobs:
env:
CONFIGURATION: ${{ matrix.configuration }}
CI: true
# Builds the project in a dev container
build-devcontainer:
runs-on: ubuntu-latest
steps:

- uses: actions/checkout@v3

- name: Build and run dev container task
uses: devcontainers/ci@v0.3
with:
runCmd: |
chmod +x ./build.sh
./build.sh
13 changes: 13 additions & 0 deletions Content/Library/.github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,16 @@ jobs:
CI: true
CONFIGURATION: ${{ matrix.configuration }}
ENABLE_COVERAGE: true
# Builds the project in a dev container
build-devcontainer:
runs-on: ubuntu-latest
steps:

- uses: actions/checkout@v3

- name: Build and run dev container task
uses: devcontainers/ci@v0.3
with:
runCmd: |
chmod +x ./build.sh
./build.sh

0 comments on commit 7d43e90

Please sign in to comment.