Update Hash.h #39
This file contains hidden or 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
| # This is a basic workflow to help you get started with Actions | |
| name: CI | |
| # Controls when the workflow will run | |
| on: | |
| # Triggers the workflow on push or pull request events but only for the master branch | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| # A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
| jobs: | |
| # This workflow contains a single job called "build" | |
| build-ubuntu: | |
| # The type of runner that the job will run on | |
| runs-on: ubuntu-latest | |
| # Steps represent a sequence of tasks that will be executed as part of the job | |
| steps: | |
| # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
| - uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| - name: Setup premake | |
| uses: abel0b/[email protected] | |
| with: | |
| version: "5.0.0-beta1" | |
| # Runs a set of commands using the runners shell | |
| - name: Run a multi-line script | |
| run: | | |
| premake5 gmake | |
| make config=release | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: LinuxPlugin-ubuntu-x64 | |
| path: | | |
| **/LuaPlugin*.so | |
| # build-debian: | |
| # # The type of runner that the job will run on | |
| # runs-on: debian-latest | |
| # # Steps represent a sequence of tasks that will be executed as part of the job | |
| # steps: | |
| # # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
| # - uses: actions/checkout@v3 | |
| # with: | |
| # submodules: recursive | |
| # - name: Setup premake | |
| # uses: abel0b/[email protected] | |
| # with: | |
| # version: "5.0.0-beta1" | |
| # # Runs a set of commands using the runners shell | |
| # - name: Run a multi-line script | |
| # run: | | |
| # premake5 gmake | |
| # make config=release | |
| # - uses: actions/upload-artifact@v4 | |
| # with: | |
| # name: LinuxPluginx-debian-64 | |
| # path: | | |
| # **/LuaPlugin*.so | |
| build-windows: | |
| # The type of runner that the job will run on | |
| runs-on: windows-latest | |
| # Steps represent a sequence of tasks that will be executed as part of the job | |
| steps: | |
| # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
| - uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| - name: Add MSBuild to PATH | |
| uses: microsoft/[email protected] | |
| with: | |
| msbuild-architecture: x64 | |
| - name: Setup premake | |
| uses: abel0b/[email protected] | |
| with: | |
| version: "5.0.0-beta1" | |
| # Runs a set of commands using the runners shell | |
| - name: Run a multi-line script | |
| run: | | |
| premake5 vs2022 | |
| msbuild.exe VCMPLua.sln -p:Configuration=Release -p:Platform=x64 | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: WindowsPluginx64 | |
| path: | | |
| **/LuaPlugin*.dll |