aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <[email protected]>2022-09-15 10:04:03 +0900
committerMITSUNARI Shigeo <[email protected]>2022-09-15 10:16:41 +0900
commit5fcf87596b42f905c01973a33a844ec911529420 (patch)
treeb7c2e3f918ad67e1748437d1fa6225317b2123ce /.github
parente31961ea83b9c41f475e68c4ab587aa8099af300 (diff)
downloadxbyak-5fcf87596b42f905c01973a33a844ec911529420.tar.gz
xbyak-5fcf87596b42f905c01973a33a844ec911529420.zip
compile nasm-2.15 instead of apt install
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/main.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index a2a8c7f..1e53b98 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -8,6 +8,8 @@ jobs:
steps:
- uses: actions/checkout@v2
- run: sudo apt update
- - run: sudo apt install nasm yasm g++-multilib tcsh
+ - run: sudo apt install yasm g++-multilib tcsh
+ - run: wget https://www.nasm.us/pub/nasm/releasebuilds/2.15.05/nasm-2.15.05.tar.gz
+ - run: tar xvfz nasm-2.15.05.tar.gz && cd nasm-2.15.05 && ./configure && make && sudo make install && cd ..
- run: make test
- run: make -C sample CXXFLAGS="-DXBYAK_NO_EXCEPTION"