diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 3495ee27..f901e526 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -37,10 +37,29 @@ jobs: services: core: image: ${{ matrix.fauna-docker-service.name }} + volumes: + - .github/workflows/build_and_test.yml + - ${{ github.workspace }}/.github/workflows/feature-flags.json:/etc/feature-flag-periodic.d/feature-flags.json steps: - uses: actions/checkout@v3 + - name: test 0 + run: + echo ${{ github.workspace }} + + - name: test 1 + run: + echo $GITHUB_WORKSPACE + + - name: test 2 + run: + ls -la ${{ github.workspace }} + + - name: test 3 + run: + ls -la $GITHUB_WORKSPACE + - name: Show file descriptor limit run: ulimit -a diff --git a/.github/workflows/feature-flags.json b/.github/workflows/feature-flags.json new file mode 100644 index 00000000..2fc48a0a --- /dev/null +++ b/.github/workflows/feature-flags.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "properties": [ + { + "property_name": "cluster_name", + "property_value": "fauna", + "flags": { + "fql2_schema": true, + "fqlx_typecheck_default": true, + "persisted_fields": true, + "changes_by_collection_index": true, + "fql2_streams": true + } + }, + { + "property_name": "account_id", + "property_value": 0, + "flags": { + "fql2_schema": true, + "fqlx_typecheck_default": true, + "persisted_fields": true, + "changes_by_collection_index": true, + "fql2_streams": true + } + } + ] +}