diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..b8985ac --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,23 @@ + +pipeline { + agent any + + stages { + stage('Build') { + steps { + echo 'Building..' + } + } + stage('Test') { + steps { + echo 'Testing..' + } + } + stage('Deploy') { + steps { + echo 'Deploying....' + } + } + } +} + diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..b8985ac --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,23 @@ + +pipeline { + agent any + + stages { + stage('Build') { + steps { + echo 'Building..' + } + } + stage('Test') { + steps { + echo 'Testing..' + } + } + stage('Deploy') { + steps { + echo 'Deploying....' + } + } + } +} + diff --git a/Makefile b/Makefile index d5e388e..9cddf49 100644 --- a/Makefile +++ b/Makefile @@ -3,8 +3,8 @@ all: x86_64-linux-gnu-g++ Test.cpp -o Hello-linux-64 - x86_64-apple-darwin19-c++ Test.cpp -o Hello-macosx.bin x86_64-w64-mingw32-g++ Test.cpp -o Hello-win64.exe + x86_64-apple-darwin19-c++ Test.cpp -o Hello-macosx.bin diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..b8985ac --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,23 @@ + +pipeline { + agent any + + stages { + stage('Build') { + steps { + echo 'Building..' + } + } + stage('Test') { + steps { + echo 'Testing..' + } + } + stage('Deploy') { + steps { + echo 'Deploying....' + } + } + } +} + diff --git a/Makefile b/Makefile index d5e388e..9cddf49 100644 --- a/Makefile +++ b/Makefile @@ -3,8 +3,8 @@ all: x86_64-linux-gnu-g++ Test.cpp -o Hello-linux-64 - x86_64-apple-darwin19-c++ Test.cpp -o Hello-macosx.bin x86_64-w64-mingw32-g++ Test.cpp -o Hello-win64.exe + x86_64-apple-darwin19-c++ Test.cpp -o Hello-macosx.bin diff --git a/build.sh b/build.sh old mode 100644 new mode 100755 index 2a88320..13674d2 --- a/build.sh +++ b/build.sh @@ -1,6 +1,5 @@ #!/bin/bash -export PATH=/home/jryland/CrossCompilers/osxcross/target/bin +export PATH=/home/jryland/CrossCompilers/osxcross/target/bin:$PATH make -