Skip to content
Draft
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
bb4e954
Add new job on release, update exe in std140-CSE repo.
galanCA Jun 28, 2022
6a7e5c4
Test checkout std140 repo.
galanCA Jun 28, 2022
4cecd22
Test checkout std140 repo V2.
galanCA Jun 28, 2022
771732c
Add new workflow.
galanCA Jun 28, 2022
71752b9
Check std140 builds.
galanCA Jun 29, 2022
eb2e12b
Checkout branch.
galanCA Jun 29, 2022
f552d60
Checkout branch for std140.
galanCA Jun 29, 2022
0077e63
Checkout branch for std140 V2.
galanCA Jun 29, 2022
efbff66
Checkout branch for std140 V3.
galanCA Jun 29, 2022
649099e
Checkout branch for std140 V4.
galanCA Jun 29, 2022
a3b2f47
Checkout branch for std140 V4.
galanCA Jun 29, 2022
1b0f4d9
Checkout branch for std140 V5.
galanCA Jun 29, 2022
9291200
Checkout branch for std140 V6.
galanCA Jun 29, 2022
c90c830
Checkout branch for std140 V7.
galanCA Jun 29, 2022
93ab48a
Checkout branch for std140 V8.
galanCA Jun 29, 2022
9f21015
Add test only when this branch is pushed.
galanCA Jun 29, 2022
2200f74
Add test only when this branch is pushed V2.
galanCA Jun 29, 2022
911a863
Add test only when this branch is pushed V3.
galanCA Jun 29, 2022
592aef5
Add test only when this branch is pushed V4.
galanCA Jun 29, 2022
ebbd467
Add test only when this branch is pushed V5.
galanCA Jun 29, 2022
1475a77
Add test only when this branch is pushed V6.
galanCA Jun 29, 2022
4a938f4
Add test only when this branch is pushed V7.
galanCA Jun 29, 2022
359077b
Add test only when this branch is pushed V8.
galanCA Jun 29, 2022
7db1fdf
Add test only when this branch is pushed V9.
galanCA Jun 29, 2022
f6d3652
Add test only when this branch is pushed V10.
galanCA Jun 29, 2022
f5e89a5
Move the CSE to the std140 repo.
galanCA Jul 1, 2022
775d061
Merge branch 'main' into 140-ci-test
galanCA Jan 27, 2023
deeddf6
Merge remote-tracking branch 'origin/main' into 140-ci-test
galanCA Jan 27, 2023
1abe65f
Update std140-cse workflow to use actions.
galanCA Jan 27, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 56 additions & 0 deletions .github/workflows/std140-cse.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: Update std140 CSE

# Final
#on:
# release:
# types:
# - created

# For test
on:
push:
branches:
- '140-ci-test'

jobs:
build-cse:
name: Build CSE executable
runs-on: windows-2022
defaults:
run:
shell: bash
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
submodules: recursive
- name: Build CSE
uses: ./.github/actions/build-cse
- name: Upload executable artifiact
uses: actions/upload-artifact@v3
with:
name: CSE.exe
path: msvc/CSE.exe

std140-exe:
name: Add new exe to std140
needs: build-cse
runs-on: windows-2022
steps:
- name: Checkout
uses: actions/[email protected]
- name: Clone std140-cse repo
uses: actions/[email protected]
with:
repository: cse-sim/std140-cse
path: test/repo/std140-cse
ref: add-test-workflow
- name: Update CSE in std140-cse
run: |
cp "./msvc/CSE.exe" "./test/repo/std140-cse/CSE.exe"
# git config user.name github-actions
# git config user.email [email protected]
# git add ./test/repo/std140-cse/CSE.exe
# git commit -m "Update CSE.exe"
# git push