-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
370 additions
and
372 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
root = true | ||
|
||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
|
||
root = true | ||
|
||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,42 @@ | ||
name: release | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
release-linux-x64-binary: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/cache@v4 | ||
with: | ||
path: | | ||
~/.cache/bazelisk | ||
~/.cache/bazel-disk-cache | ||
key: ${{runner.os}}-bazel-cache | ||
- uses: actions/checkout@v4 | ||
- run: 'bazel build --config=ci //:ecsact_cli' | ||
- run: 'cp ./bazel-bin/ecsact/cli/ecsact ecsact_${{ github.ref_name }}_linux_x64' | ||
- run: 'gh release upload ${{ github.ref_name }} ecsact_${{ github.ref_name }}_linux_x64' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
OWNER: ${{ github.repository_owner }} | ||
REPO: ${{ github.event.repository.name }} | ||
|
||
release-windows-x64-binary: | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/cache@v4 | ||
with: | ||
path: | | ||
/Users/runneradmin/AppData/Local/bazelisk | ||
/Users/runneradmin/.cache/bazel-disk-cache | ||
key: ${{runner.os}}-bazel-cache | ||
- uses: actions/checkout@v4 | ||
- run: 'bazel build --config=ci //:ecsact_cli' | ||
- run: 'Copy-Item .\bazel-bin\ecsact\cli\ecsact.exe -Destination .\ecsact_${{ github.ref_name }}_windows_x64.exe' | ||
- run: 'gh release upload ${{ github.ref_name }} ./ecsact_${{ github.ref_name }}_windows_x64.exe' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
OWNER: ${{ github.repository_owner }} | ||
REPO: ${{ github.event.repository.name }} | ||
name: release | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
release-linux-x64-binary: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/cache@v4 | ||
with: | ||
path: | | ||
~/.cache/bazelisk | ||
~/.cache/bazel-disk-cache | ||
key: ${{runner.os}}-bazel-cache | ||
- uses: actions/checkout@v4 | ||
- run: "bazel build --config=ci //:ecsact_cli" | ||
- run: "cp ./bazel-bin/ecsact/cli/ecsact ecsact_${{ github.ref_name }}_linux_x64" | ||
- run: "gh release upload ${{ github.ref_name }} ecsact_${{ github.ref_name }}_linux_x64" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
OWNER: ${{ github.repository_owner }} | ||
REPO: ${{ github.event.repository.name }} | ||
|
||
release-windows-x64-binary: | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/cache@v4 | ||
with: | ||
path: | | ||
/Users/runneradmin/AppData/Local/bazelisk | ||
/Users/runneradmin/.cache/bazel-disk-cache | ||
key: ${{runner.os}}-bazel-cache | ||
- uses: actions/checkout@v4 | ||
- run: "bazel build --config=ci //:ecsact_cli" | ||
- run: 'Copy-Item .\bazel-bin\ecsact\cli\ecsact.exe -Destination .\ecsact_${{ github.ref_name }}_windows_x64.exe' | ||
- run: "gh release upload ${{ github.ref_name }} ./ecsact_${{ github.ref_name }}_windows_x64.exe" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
OWNER: ${{ github.repository_owner }} | ||
REPO: ${{ github.event.repository.name }} |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
<p align="center"> | ||
<img src="https://ecsact.dev/external/ecsact_logo/ecsact-color.png" width="300" /> | ||
</p> | ||
|
||
# Ecsact CLI | ||
|
||
The Ecsact CLI is _the_ utility for the following: | ||
|
||
* Code generation frontend | ||
* Benchmark utility | ||
* Config details about Ecsact SDK installation and builtins | ||
|
||
## Install | ||
|
||
Ecsact CLI ships with the Ecsact SDK. [ecsact.dev/start](https://ecsact.dev/start) | ||
|
||
<p align="center"> | ||
<img src="https://ecsact.dev/external/ecsact_logo/ecsact-color.png" width="300" /> | ||
</p> | ||
|
||
# Ecsact CLI | ||
|
||
The Ecsact CLI is _the_ utility for the following: | ||
|
||
* Code generation frontend | ||
* Benchmark utility | ||
* Config details about Ecsact SDK installation and builtins | ||
|
||
## Install | ||
|
||
Ecsact CLI ships with the Ecsact SDK. [ecsact.dev/start](https://ecsact.dev/start) | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -86,4 +86,4 @@ int main(int argc, char* argv[]) { | |
} | ||
|
||
return 0; | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
@echo off | ||
|
||
@rem This is a mock value for the ecsact_cli repository. This gets set inside | ||
@rem the ecsact_sdk repository. | ||
echo STABLE_ECSACT_SDK_VERSION none | ||
|
||
@echo off | ||
|
||
@rem This is a mock value for the ecsact_cli repository. This gets set inside | ||
@rem the ecsact_sdk repository. | ||
echo STABLE_ECSACT_SDK_VERSION none |
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
Oops, something went wrong.