ci: update examples to latest spec #348
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run CI | |
on: | |
push: | |
branches: [ main ] | |
paths-ignore: | |
- '**.md' # Do not need to run CI for markdown changes. | |
pull_request: | |
branches: [ main ] | |
paths-ignore: | |
- '**.md' | |
jobs: | |
rockspec-info: | |
uses: ./.github/workflows/rockspec-info.yml | |
rockspecs: | |
needs: rockspec-info | |
runs-on: ubuntu-latest | |
outputs: | |
matrix: ${{ steps.set-matrix.outputs.matrix }} | |
steps: | |
- id: set-matrix | |
run: | | |
data=$(echo '${{ needs.rockspec-info.outputs.info }}' | jq -c 'to_entries | map(.value.rockspec)') | |
echo "matrix=$data" >> $GITHUB_OUTPUT | |
linux-build: | |
needs: rockspecs | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
version: ["5.1", "5.2", "5.3", "luajit-2.0.5"] | |
package: ${{ fromJSON(needs.rockspecs.outputs.matrix) }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/ci | |
with: | |
lua-version: ${{ matrix.version }} | |
rockspec: ${{ matrix.package }} | |
web-server-examples: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
name: ["hello-haproxy", "hello-nginx"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Get C++ Versions | |
id: cpp-versions | |
uses: ./.github/actions/cpp-versions | |
- name: Build ${{ matrix.name }} image | |
run: | | |
docker build \ | |
--build-arg="CPP_SDK_VERSION=${{ steps.cpp-versions.outputs.sdk }}" \ | |
-t launchdarkly:${{ matrix.name }} -f ./examples/${{ matrix.name }}/Dockerfile . | |
- name: Run ${{ matrix.name }} container in background | |
run: | | |
docker run -dit --rm --name ${{ matrix.name }} -p 8123:80 --env LAUNCHDARKLY_SDK_KEY="$LAUNCHDARKLY_SDK_KEY" launchdarkly:${{ matrix.name }} | |
- name: Evaluate feature flag | |
run: | | |
curl --retry 5 --retry-all-errors --retry-delay 1 -s -v http://localhost:8123 | tee response.txt | |
- name: Stop ${{ matrix.name }} container | |
run: | | |
docker stop ${{ matrix.name }} | |
- uses: launchdarkly/gh-actions/actions/[email protected] | |
name: 'Verify ${{ matrix.name}} example output' | |
with: | |
use_server_key: true | |
role_arn: ${{ vars.AWS_ROLE_ARN }} | |
command: cat response.txt | |
plain-lua-examples: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
name: [ "hello-debian"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Get C++ Versions | |
id: cpp-versions | |
uses: ./.github/actions/cpp-versions | |
- name: Build ${{ matrix.name }} image | |
run: | | |
docker build \ | |
--build-arg="CPP_SDK_VERSION=${{ steps.cpp-versions.outputs.sdk }}" \ | |
-t launchdarkly:${{ matrix.name }} -f ./examples/${{ matrix.name }}/Dockerfile . | |
- name: Run ${{ matrix.name }} container in foreground | |
run: | | |
docker run --env LAUNCHDARKLY_SDK_KEY="$LAUNCHDARKLY_SDK_KEY" launchdarkly:${{ matrix.name }} > logs.txt | |
- uses: launchdarkly/gh-actions/actions/[email protected] | |
name: 'Verify ${{ matrix.name}} example output' | |
with: | |
use_server_key: true | |
role_arn: ${{ vars.AWS_ROLE_ARN }} | |
command: cat logs.txt |