name: "Plum Room"
display_name: "Plum Room"
panels {
name: "GOD"
path: "Panels/Plum Room/plum_1"
clue: "god"
answer: "goddess"
symbols: GENDER
}
panels {
name: "INJURED"
path: "Panels/Plum Room/plum_2"
clue: "injured"
answer: "wounded"
symbols: SUN
}
panels {
name: "HEALTHY"
path: "Panels/Plum Room/plum_3"
clue: "healthy"
answer: "diseased"
symbols: SUN
}
panels {
name: "DEMURRED"
path: "Panels/Plum Room/plum_4"
clue: "demurred"
answer: "murdered"
symbols: ANAGRAM
}
panels {
name: "FOUROFFERBEAR"
path: "Panels/Plum Room/plum_5"
clue: "fourofferbear"
answer: "forbidden"
symbols: SUN
symbols: ZERO
symbols: STARS
}
panels {
name: "SNAKE"
path: "Panels/Plum Room/plum_6"
clue: "snake"
answer: "adder"
symbols: EXAMPLE
}
panels {
name: "CENTER"
path: "Panels/Plum Room/plum_7"
clue: "center"
answer: "middle"
symbols: SUN
}
ed'>main
blob: cc90e1d12f3a4942e084c1d7163c8604ff6b96ba (
plain) (
tree)
|
|
name: libwifi (64-Bit)
on: [push]
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Create Build Environment
run: cmake -E make_directory ${{github.workspace}}/build
- name: Configure CMake
shell: bash
working-directory: ${{github.workspace}}/build
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE
- name: Build X86_64
shell: bash
working-directory: ${{github.workspace}}/build
run: cmake --build . --config $BUILD_TYPE
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Create Build Environment
run: cmake -E make_directory ${{github.workspace}}/build
- name: Configure CMake
shell: bash
working-directory: ${{github.workspace}}/build
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE
- name: Build X86_64
shell: bash
working-directory: ${{github.workspace}}/build
run: cmake --build . --config $BUILD_TYPE
- name: Create Test Environment
run: cmake -E make_directory ${{github.workspace}}/test/build
- name: Configure CMake
shell: bash
working-directory: ${{github.workspace}}/test/build
run: cmake ${{github.workspace}}/test
- name: Build Tests
shell: bash
working-directory: ${{github.workspace}}/test/build
run: cmake --build .
- name: Test X86_64
shell: bash
working-directory: ${{github.workspace}}/test/build
run: ctest --output-on-failure
|