Skip to content

Commit f39088f

Browse files
committed
Github Actions master builds
1 parent 30b7d70 commit f39088f

File tree

13 files changed

+444
-216
lines changed

13 files changed

+444
-216
lines changed

.github/workflows/cmake.yml

-197
This file was deleted.

.github/workflows/dump.yml

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
name: Dump Contexts
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
9+
jobs:
10+
one:
11+
strategy:
12+
matrix:
13+
os: [windows-latest, macOS-latest]
14+
15+
runs-on: ${{ matrix.os }}
16+
steps:
17+
- name: Dump GitHub context
18+
shell: bash
19+
env:
20+
GITHUB_CONTEXT: ${{ toJson(github) }}
21+
run: echo "$GITHUB_CONTEXT"
22+
- name: Dump job context
23+
shell: bash
24+
env:
25+
JOB_CONTEXT: ${{ toJson(job) }}
26+
run: echo "$JOB_CONTEXT"
27+
- name: Dump steps context
28+
shell: bash
29+
env:
30+
STEPS_CONTEXT: ${{ toJson(steps) }}
31+
run: echo "$STEPS_CONTEXT"
32+
- name: Dump runner context
33+
shell: bash
34+
env:
35+
RUNNER_CONTEXT: ${{ toJson(runner) }}
36+
run: echo "$RUNNER_CONTEXT"
37+
- name: Dump strategy context
38+
shell: bash
39+
env:
40+
STRATEGY_CONTEXT: ${{ toJson(strategy) }}
41+
run: echo "$STRATEGY_CONTEXT"
42+
- name: Dump matrix context
43+
shell: bash
44+
env:
45+
MATRIX_CONTEXT: ${{ toJson(matrix) }}
46+
run: echo "$MATRIX_CONTEXT"

0 commit comments

Comments
 (0)