xref: /aosp_15_r20/external/flatbuffers/conan/appveyor/build.py (revision 890232f25432b36107d06881e0a25aaa6b473652)
1#!/usr/bin/env python
2# -*- coding: utf-8 -*-
3import os
4
5if os.getenv("APPVEYOR_REPO_TAG") != "true":
6    print("Skip build step. It's not TAG")
7else:
8    os.system("python conan/build.py")
9