Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
RealNeGate committed Jan 5, 2023
1 parent ffeb562 commit 9ac26c6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ jobs:
shell: cmd
run: |
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat
make package -j
make -j
timeout-minutes: 10

- name: upload artifacts
uses: actions/upload-artifact@v3
with:
name: tb-windows
path: tb.tar.gz
path: tildebackend.lib
build_mac:
runs-on: macos-latest
steps:
Expand All @@ -39,14 +39,14 @@ jobs:
run: git submodule update --init --recursive

- name: Build TB
run: make package -j
run: make -j
timeout-minutes: 10

- name: upload artifacts
uses: actions/upload-artifact@v3
with:
name: tb-macos
path: tb.tar.gz
path: tildebackend.a
build_linux:
runs-on: ubuntu-latest
steps:
Expand All @@ -58,11 +58,11 @@ jobs:
run: git submodule update --init --recursive

- name: Build TB
run: make package -j
run: make -j
timeout-minutes: 10

- name: upload artifacts
uses: actions/upload-artifact@v3
with:
name: tb-linux
path: tb.tar.gz
path: tildebackend.a

0 comments on commit 9ac26c6

Please sign in to comment.