Skip to content

flatten swift telemetry dictionary #31

flatten swift telemetry dictionary

flatten swift telemetry dictionary #31

Workflow file for this run

name: Build
on: [push]
jobs:
Build:
runs-on: macos-12
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: brew install autoconf automake bison pkg-config boost
- name: Boostrap
run: |
export PATH="/usr/local/opt/bison/bin:$PATH"
./bootstrap.sh
- name: Configure
run: |
export PATH="/usr/local/opt/bison/bin:$PATH"
export CFLAGS="-Wno-deprecated-copy-with-user-provided-copy"
export CXXFLAGS="-Wno-deprecated-copy-with-user-provided-copy"
./configure
- name: Make
run: |
export PATH="/usr/local/opt/bison/bin:$PATH"
export CFLAGS="-Wno-deprecated-copy-with-user-provided-copy"
export CXXFLAGS="-Wno-deprecated-copy-with-user-provided-copy"
cd ./compiler/cpp
make
- name: Add executable permission
run: chmod +x ./compiler/cpp/thrift
- name: 'Zip files'
run: zip -j ./thrift.zip ./compiler/cpp/thrift
- name: 'Upload Artifact'
uses: actions/upload-artifact@v2
with:
name: thrift.zip
path: ./thrift.zip