There was an error while loading. Please reload this page.
1 parent 5bb346f commit 47450f0Copy full SHA for 47450f0
2 files changed
.github/workflows/linux-ci.yml
@@ -9,8 +9,14 @@ jobs:
9
runs-on: ubuntu-latest
10
steps:
11
- uses: actions/checkout@v4
12
+ - uses: docker/login-action@v2
13
+ with:
14
+ registry: ghcr.io
15
+ username: ${{ github.repository_owner }}
16
+ password: ${{ secrets.GITHUB_TOKEN }}
17
- uses: devcontainers/ci@v0.3
18
with:
19
+ imageName: ghcr.io/dragonruby/lightstorm-ci
20
runCmd: |
21
cmake --preset lightstorm
22
cmake --build ./build.debug.dir/build -t run-integration-tests
.github/workflows/macos-ci.yml
@@ -2,8 +2,8 @@ name: macOS CI
2
on:
3
push:
4
branches: ["main"]
5
- # pull_request:
6
- # branches: ["main"]
+ # pull_request:
+ # branches: ["main"]
7
jobs:
8
build-and-test:
runs-on: ${{ matrix.os }}
0 commit comments